next.js/test/e2e/switchable-runtime/next.config.js
next.config.js19 lines345 B
/** @type {import('next').NextConfig} */
module.exports = {
  reactStrictMode: true,
  async rewrites() {
    return {
      afterFiles: [
        {
          source: '/rewrite/edge',
          destination: '/edge',
        },
        {
          source: '/rewrite/api/edge',
          destination: '/api/edge',
        },
      ],
    }
  },
}
Quest for Codev2.0.0
/
SIGN IN