Started using parcel for the first time. I've setup parcel in my project and ran the parcel serve src/index.html.
The build succeeds, but when I go to the url, I get a 404 error:

When I inspect the dist folder I find my files there, but the index file itself has a hash, so calling http://localhost:1234/index.html returns a 404
But calling http://localhost:1234/index.html.4183.0 works

How do I tell parcel to correctly build the index.html without the extra hash? i have tried no-content-hash to no avail.
