next.js/test/integration/fallback-false-rewrite/next.config.js
next.config.js13 lines172 B
module.exports = {
  rewrites() {
    return {
      fallback: [
        {
          source: '/:path*',
          destination: '/another',
        },
      ],
    }
  },
}
Quest for Codev2.0.0
/
SIGN IN