Skip to content

Commit e32a447

Browse files
committed
fix: explicitly define the path of the root for turbopack for Azure app service
1 parent 1640798 commit e32a447

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

next.config.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import type { NextConfig } from "next";
2+
import path from "path";
23

34
const nextConfig: NextConfig = {
4-
/* config options here */
5+
turbopack: {
6+
root: path.resolve(__dirname),
7+
},
58
};
69

7-
export default nextConfig;
10+
export default nextConfig;

0 commit comments

Comments
 (0)