I am trying to deploy on Netlify and when I run npm run build I get missing script error. I see that I already have build script in my package.json. package.json image
How can I fix this?
I am trying to deploy on Netlify and when I run npm run build I get missing script error. I see that I already have build script in my package.json. package.json image
How can I fix this?
Change the script name from build to something else (build is reserved) like build-dev
check this out: similar question