Files
2025-10-20 23:04:53 +02:00

13 lines
215 B
JavaScript

/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
cacheComponents: true,
experimental: {
// Future but produces bad results.
reactDebugChannel: false,
},
}
module.exports = nextConfig