Map HTTP 404 explicitly in Vercel

This commit is contained in:
Alex Gutjahr
2024-02-07 08:43:23 +01:00
committed by GitHub
parent 74d9d9b8cc
commit 94482e36a7

View File

@@ -7,5 +7,15 @@
"distDir": "public"
}
}
],
"routes": [
{
"handle": "filesystem"
},
{
"src": "/(.*)",
"status": 404,
"dest": "/404.html"
}
]
}