please, help me.
local all are doing good.
my site name unrivaled-monstera-9bc3a5
Deploys from github.com/slovinskamary/react-nice-weather-app.
`
please, help me.
local all are doing good.
my site name unrivaled-monstera-9bc3a5
Deploys from github.com/slovinskamary/react-nice-weather-app.
`
@MarSlovinska Why the build is failing is explained in your own screenshot, specifically:
Treating warnings as errors because process.env.CI = true.
Most CI servers set it automatically.
Then several lines later, the build throws some warnings from eslint
.
You can fix the warnings or if you don’t want warnings treated as errors you can override the default behavior by settings process.env.CI
to false
.
An easy way to do this is to modify your Build settings in Netlify so that your Build command changes from:
npm run build
to
CI= npm run build