next.js/test/e2e/app-dir/segment-cache/cached-navigations/next.config.ts
next.config.ts18 lines406 B
import type { NextConfig } from 'next'

const nextConfig: NextConfig = {
  cacheComponents: true,
  productionBrowserSourceMaps: true,
  experimental: {
    cachedNavigations: true,
    prefetchInlining: false,
    exposeTestingApiInProductionBuild: true,
    instantNavigationDevToolsToggle: true,
    optimisticRouting: true,
    useOffline: true,
    varyParams: true,
  },
}

export default nextConfig
Quest for Codev2.0.0
/
SIGN IN