laravel-vue-ecommerce
laravel-vue-ecommerce copied to clipboard
I am trying to install npm, but this error appears. I have tried many solutions from the stacoverflow website and other sites, but I could not solve the problem. The version of node installed on my device is 18, the latest version, win11.
Delete the node_moduless folder, make sure you're have a good internet and then run npm install in the terminal
This will still cause errors. You will need to run npm with the legacy-peer-deps
flag: npm install --legacy-peer-deps
. There will be 1 moderate severity vulnerability, and you can fix this by running npm audit fix
.
yest, that solved it, I forgot to come provide update here, thanks @LeftPinkie