stereobooster / react-snap

👻 Zero-configuration framework-agnostic static prerendering for SPAs
MIT License
5.04k stars 390 forks source link

Installation stucks at the end #550

Open AmirHosseinNP opened 2 years ago

AmirHosseinNP commented 2 years ago

Hello, I have this problem that when I want to install react-snap, the installation process stucks at the end and I don't know what to do? Here is a picture: image

Pimm commented 2 years ago

Could you try installing with the --verbose option?

Keshavdulal commented 1 year ago

It looks like You have dependency conflicts.

Try removing node_modules and package-lock.json and then run

npm install

Or try clearing out npm cache

npm cache clean --force

Or run the command with the --legacy-peer-deps option

npm install --legacy-peer-deps

Or run the command with the --force option

npm install --force

If you still face issue after this do reply here. And you can try these step for most cases.