I have a site set up to use netlify and via a github source.
I’m finding that when pushing through github, “git push origin master” is deploying to netlify just fine and I can see all of the changes I have made, including the successful build status in github and netlify.
however running “netlify build” or “netlify build --prod” isn’t showing any changes.
netlify status looks fine, the only mismatch I can see is;
On netlify, within deploy settings;
my Build command is: npm run build
In my netlify.toml file;
it is also set to: command = “npm run build”
Should this not be set in both cases to “netlify build”?