nextjs-subscription-payments
nextjs-subscription-payments copied to clipboard
--turbo flag breaks dependencies
Not sure if anyone else has encountered this, but I found that I had to remove the --turbo
flag from the dev
command in package.json
, or else I got an error that certain sub-dependencies of @radix-ui/react-toast
couldn't be resolved.
Different behavior with and without --turbo
flag in next dev
command · Issue #64552 · vercel/next.js
https://github.com/vercel/next.js/issues/64552
I too just added the --turbo option and the language conversion stopped working.
https://github.com/masakinihirota/next_dev_i18n
Edited to work at minimum.
"dev": "next dev --turbo"
Start the local server.
pnpm run dev
http://localhost:3000 English to Japanese conversion is not working on the top page.
Drop the local server once.
Edit.
"dev": "next dev"
Start the local server.
pnpm run dev
http://localhost:3000 The English to Japanese conversion is working as expected on the top page.