Merge pull request #91 from alexgutjahr/main

Map HTTP 404 explicitly in Vercel
This commit is contained in:
Somrat 2024-02-07 13:51:50 +06:00 committed by GitHub
commit 44c27ee97a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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