I\'m new to Ionic. I was following the Ionic documentation \"get started\", created a project sample named \"super\". The problem is that when I run the command line i
I was facing same issue, here is what I did-
npm install
That fixed those errors for me.
See here.
To get the latest @ionic/app-scripts
, run the following command:
npm install @ionic/app-scripts@latest --save-dev
I had this issue , i solved it by deleting node_modules/ folder and ran the command npm install
now my app works
I had the issue, solved by execute cnpm i @ionic/app-scripts
.
After half a day trying to solve this And after: python version error node-sass misconfiguration error
I did the following
The last one because ionic build was giving me an error on that package after the audit
In my case, I need to set NODE_ENV to production then it installs successfully
set NODE_ENV=production
npm install @ionic/app-scripts@latest --save-dev