mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
reactCompiler: true,
|
|
reactProductionProfiling: true,
|
|
}
|
|
|
|
module.exports = nextConfig
|