1 parent 22bc34c commit 0a3165cCopy full SHA for 0a3165c
2 files changed
next.config.js
@@ -2,9 +2,10 @@
2
const nextConfig = {
3
reactStrictMode: true,
4
productionBrowserSourceMaps: false,
5
- turbopack: {
6
- root: __dirname,
7
- },
+ // Disable Turbopack - it's very disk I/O intensive
+ // turbopack: {
+ // root: __dirname,
8
+ // },
9
10
async headers() {
11
return [
tsconfig.json
@@ -31,6 +31,7 @@
31
"**/*.js"
32
],
33
"exclude": [
34
- "node_modules"
+ "node_modules",
35
+ ".next"
36
]
37
}
0 commit comments