Force 404 on static folder when a file is not found (#1165)

This commit is contained in:
Charles Bochet
2023-08-10 21:17:40 +02:00
committed by GitHub
parent 07a8f68ef1
commit a12b6c4bda
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,6 @@
{
"rewrites": [
{ "source": "!static/**", "destination": "/index.html" }
],
"directoryListing": false
}