next.js/test/integration/rewrite-with-browser-history/next.config.js
next.config.js11 lines173 B
module.exports = {
  rewrites() {
    return [
      {
        source: '/:pagePrefix/:path*',
        destination: '/dynamic-page/:pagePrefix/:path*',
      },
    ]
  },
}
Quest for Codev2.0.0
/
SIGN IN