UNPKG

@nadeshikon/plugin-nextjs

Version:
18 lines (16 loc) 375 B
/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, async rewrites() { return { beforeFiles: [ { source: '/:path(.*)', has: [{ type: 'query', key: 'json', value: 'true' }], destination: '/api/json?from=/:path', }, ], } }, } module.exports = nextConfig