next.js/packages/next-codemod/transforms/__testfixtures__/middleware-to-proxy/next-config-function.output.ts
next-config-function.output.ts14 lines304 B
import type { NextConfig } from 'next'

function nextConfig(): NextConfig {
  return {
    experimental: {
      proxyPrefetch: 'flexible',
      proxyClientMaxBodySize: 5 * 1024 * 1024,
      externalProxyRewritesResolve: false,
    },
    skipProxyUrlNormalize: false,
  };
}

export default nextConfig
Quest for Codev2.0.0
/
SIGN IN