If I run locally the same “npm run build” command, all the folders/files will be in place, but when using Netlify, the “favicon” folder and all its files are simply not there, as if it is ignored by Netlify.
GitHub Repo: GitHub - Rock-n-Roll-CRC/FM-Contact-Form: Form with several input types and validation.
Deployment Log: Netlify
Live Website: https://fm-contact-form-danil-dikhtyar.netlify.app/
This thread is also a duplicate, I have provided a detailed answer here:
This is a duplicate of this other thread posted just prior:
Please try not to create multiple threads for the same issue.
You mention that you have src/assets/favicon and that your build creates public/assets/favicon.
But both of those paths seem incorrect.
Your repository contains src/assets/icons/favicon/.
When I run your build, the resulting public folder is exactly the same as on Netlify.
[image]
So the issue isn’t Netlify, it’s related to your own project.
You are copying files w…