next.js/test/e2e/app-dir/segment-cache/vary-params-base-dynamic/next.config.js
next.config.js21 lines323 B
/**
 * @type {import('next').NextConfig}
 */
const nextConfig = {
  cacheComponents: true,
  cacheLife: {
    expireNow: {
      stale: 0,
      revalidate: 0,
      expire: 0,
    },
  },
  experimental: {
    optimisticRouting: true,
    prefetchInlining: false,
    varyParams: true,
  },
}

module.exports = nextConfig
Quest for Codev2.0.0
/
SIGN IN