next.js/test/e2e/app-dir/app-basepath/next.config.js
next.config.js13 lines216 B
module.exports = {
  basePath: '/base',
  async rewrites() {
    return [
      {
        source: '/outsideBasePath',
        destination: 'https://example.vercel.sh/',
        basePath: false,
      },
    ]
  },
}
Quest for Codev2.0.0
/
SIGN IN