Turbopack Error: Dependency tracking is disabled so invalidation is not allowed at /Users/geist/dev/actions-runner/_work/next.js/next.js/turbopack/crates/turbo-tasks-backend/src/backend/mod.rs:1477:13 #84585
Replies: 9 comments 1 reply
-
|
same error when upgrading from 15.5.4 to 16.0.0 beta: Turbopack version: Error message: |
Beta Was this translation helpful? Give feedback.
-
|
Same happened to me upgrading from 15.5.4 to 16.0.0 beta Turbopack version: Error message: |
Beta Was this translation helpful? Give feedback.
-
|
Do you have a repro? I assume this happened in the context of a |
Beta Was this translation helpful? Give feedback.
-
|
Any updates on this? |
Beta Was this translation helpful? Give feedback.
-
|
I have this error in v16.0.0. Here's the backtrace |
Beta Was this translation helpful? Give feedback.
-
|
Here is a potential solution, please let me know if it was helpful for you: #85232 (comment) |
Beta Was this translation helpful? Give feedback.
-
|
Opened an issue: #85496 |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
I faced the exact same issue ( For anyone stuck in this loop, I managed to get a successful build by prioritizing stability. I also discovered a silent "BOM Encoding" issue that was causing JSON parse errors. Here is the full solution that worked for me:
Here is the working {
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"next": "14.2.35",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-next": "14.2.35"
}
} |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Turbopack version:
v15.6.0-canary.40-2-g09bdc4523Next.js version:
15.6.0-canary.41Error message:
Beta Was this translation helpful? Give feedback.
All reactions