Turbopack Error: Symlink package.json is invalid, it points out of the filesystem root #87139
chungah
started this conversation in
Turbopack Error Report
Replies: 1 comment
-
|
Hello! You have two options here. Option A: Update the root of your project for Turbopack.next.config.js: const nextConfig = {
turbopack: {
root: '../', // Adjust this relative path to the appropriate parent directory.
},
};Option B: Use a real package.json file instead of a symlink.You will notice that your package.json is a shortcut to a package.json located elsewhere. You can temporarily create an empty package.json2, then copy the content of the package.json into package.json2. After that, replace the package.json symlink with the new package.json2 file. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Turbopack version:
v16.0.9Next.js version:
0.0.0Error message:
Beta Was this translation helpful? Give feedback.
All reactions