next.js/test/e2e/testmode/next.config.js
next.config.js15 lines236 B
/** @type {import('next').NextConfig} */
module.exports = {
  experimental: {
    testProxy: true,
  },
  rewrites() {
    return [
      {
        source: '/rewrite-1',
        destination: 'https://example.com',
      },
    ]
  },
}
Quest for Codev2.0.0
/
SIGN IN