We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1640798 commit e32a447Copy full SHA for e32a447
1 file changed
next.config.ts
@@ -1,7 +1,10 @@
1
import type { NextConfig } from "next";
2
+import path from "path";
3
4
const nextConfig: NextConfig = {
- /* config options here */
5
+ turbopack: {
6
+ root: path.resolve(__dirname),
7
+ },
8
};
9
-export default nextConfig;
10
+export default nextConfig;
0 commit comments