next.js/test/e2e/app-dir/no-duplicate-headers-next-config/next.config.js
next.config.js21 lines314 B
/**
 * @type {import('next').NextConfig}
 */
const nextConfig = {
  async headers() {
    return [
      {
        source: '/favicon.ico',
        headers: [
          {
            key: 'cache-control',
            value: 'max-age=1234',
          },
        ],
      },
    ]
  },
}

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