Add 404 support to vercel deployments

This commit is contained in:
Ole Eskild Steensen 2023-01-06 15:08:51 +01:00
parent 1a325c678a
commit 63174b0ed1

View File

@ -1,5 +1,9 @@
{
"outputDirectory": "dist",
"installCommand": "npm install",
"buildCommand": "npm run build"
"buildCommand": "npm run build",
"routes": [
{ "handle": "filesystem" },
{ "src": "/(.*)", "status": 404, "dest": "/404" }
]
}