next.js/test/e2e/app-dir/use-cache-hanging/next.config.js
next.config.js14 lines326 B
/**
 * @type {import('next').NextConfig}
 */
const nextConfig = {
  cacheComponents: true,
  experimental: {
    // Lower the `'use cache'` fill timeout so tests don't race the browser's
    // page.goto ceiling (default ~60s) after the 54s default + compile time.
    useCacheTimeout: 10,
  },
}

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