next.js/test/e2e/app-dir/react-max-headers-length/next.config.js
next.config.js13 lines340 B
/**
 * @type {import('next').NextConfig}
 */
const nextConfig = {
  reactMaxHeadersLength: process.env.TEST_REACT_MAX_HEADERS_LENGTH
    ? parseInt(process.env.TEST_REACT_MAX_HEADERS_LENGTH)
    : undefined,
  // Emitting Link headers currently requires the experimental PPR feature.
  cacheComponents: true,
}

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