next.js/test/integration/rewrites-client-resolving/next.config.js
next.config.js15 lines234 B
module.exports = {
  rewrites() {
    return [
      {
        source: '/:path*',
        destination: '/:path*',
      },
      {
        source: '/:path*(/?(?!.html))',
        destination: '/category/:path*',
      },
    ]
  },
}
Quest for Codev2.0.0
/
SIGN IN