You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the template repository with the "--turbo" flag, build fails. Seems to be from how modules are handled with turbopack.
Mainly from the "jstack" package
The text was updated successfully, but these errors were encountered:
Have the same issue, and this is my next.config experimental: { authInterrupts: true, staleTimes: { dynamic: 30, }, ppr: true, reactCompiler: true, taint: true, dynamicIO: true, },
in package
"dev": "next dev --turbo -p 3001",
"next": "^15.2.0-canary.33",
I don't know if there are more problems behind this, I leave it for whoever wants to see
I figure the error is the package "@upstash/redis/cloudflare" in router.ts. You can safety remove the code from the generate server.js if no uses ws in your app or null the constructor in router.ts to anule generation.
Also I recommend put in tsconfig a modern approach.
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ESNext",
When running the template repository with the "--turbo" flag, build fails. Seems to be from how modules are handled with turbopack.
Mainly from the "jstack" package
The text was updated successfully, but these errors were encountered: