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

View File

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