next.js/test/production/app-dir/global-default-cache-handler/next.config.js
next.config.js19 lines262 B
/**
 * @type {import('next').NextConfig}
 */
const nextConfig = {
  output: 'standalone',
  experimental: {
    useCache: true,
  },
  cacheLife: {
    expireNow: {
      stale: 0,
      expire: 0,
      revalidate: 0,
    },
  },
}

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