mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
13 lines
215 B
JavaScript
13 lines
215 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
cacheComponents: true,
|
|
experimental: {
|
|
// Future but produces bad results.
|
|
reactDebugChannel: false,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|