vercel / nextjs-subscription-payments

Clone, deploy, and fully customize a SaaS subscription application with Next.js.
https://subscription-payments.vercel.app/
MIT License
5.77k stars 1.18k forks source link

--turbo flag breaks dependencies #312

Open chriscarrollsmith opened 3 months ago

chriscarrollsmith commented 3 months ago

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.

masakinihirota commented 2 months ago

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.

masakinihirota commented 2 months ago

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.