While pushing changes to my site, I decided to check the changes once in prod. I found that it's homepage is returning a 404 error (let's assume for this question, the site is example, with the homepage at example). I ran npm run build
once again. Yet the issue persisted. My astro.config.js
file is set at default, my Netlify publish dir is dist
, no error logs are there in the deploy section. The curious thing is, going to any other file other than the homepage (like example/about/) returns that page properly, and yes, there is no index.html
file or index
folder in dist
. How do I fix this?
Thx in advance