We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 050a90c commit fbc8774Copy full SHA for fbc8774
1 file changed
apps/frontend/next.config.ts
@@ -2,13 +2,13 @@ import { fileURLToPath } from "node:url";
2
3
import type { NextConfig } from "next";
4
5
-const frontendRoot = fileURLToPath(new URL(".", import.meta.url));
+const workspaceRoot = fileURLToPath(new URL("../..", import.meta.url));
6
7
const nextConfig: NextConfig = {
8
reactStrictMode: true,
9
- outputFileTracingRoot: frontendRoot,
+ outputFileTracingRoot: workspaceRoot,
10
turbopack: {
11
- root: frontendRoot,
+ root: workspaceRoot,
12
},
13
};
14
0 commit comments