HashLips / hashlips_nft_minting_dapp

HashLips minting dapp is a quick and easy way to connect your smart contract and start minting NFTs.
MIT License
1.02k stars 984 forks source link

Issue deploying on Netlify #156

Open Mussassa opened 1 year ago

Mussassa commented 1 year ago

If you are having an issue deploying on Netlify saying "bad option: --openssl-legacy-provider netlify", do the following:

1- change this on your package.json:

"scripts": { "start": "react-scripts --openssl-legacy-provider start", "build": "react-scripts build", } //ADD this in your script tag instead above one "scripts": { "build": "react-scripts build --openssl-legacy-provider", "start": "react-scripts start --openssl-legacy-provider", }

2- Install: npm install --legacy-peer-deps

3- Create a new environment variable on Netlify: Key name: NPM_FLAGS Value: --legacy-peer-deps

Source: https://answers.netlify.com/t/deploy-failed-today-build-was-terminated-build-script-returned-non-zero-exit-code-1/64450/2