We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
cd ./web ./install.sh
The results in a console:
Cannot find module '@rollup/rollup-linux-arm64-gnu'
open localhost:3000: I see nuxtJS page with error 503
According to researching I found some solution: vitejs/vite#15167
Solution is:
Add to./web/package.json: code below "pnpm": { "overrides": { "rollup": "npm:@rollup/wasm-node" } }
"pnpm": { "overrides": { "rollup": "npm:@rollup/wasm-node" } }
Reinstall node_modules: rm package-lock.json && rm -rf node_modules && npm i
rm package-lock.json && rm -rf node_modules && npm i
How we can make changes in this repo?
The text was updated successfully, but these errors were encountered:
I guess the issue only appears on ARM, because right now I cannot reproduce. I will take a look at this later from my macbook.
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
The results in a console:
open localhost:3000: I see nuxtJS page with error 503
According to researching I found some solution: vitejs/vite#15167
Solution is:
Add to./web/package.json: code below
"pnpm": { "overrides": { "rollup": "npm:@rollup/wasm-node" } }
Reinstall node_modules:
rm package-lock.json && rm -rf node_modules && npm i
How we can make changes in this repo?
The text was updated successfully, but these errors were encountered: