This commit is contained in:
Andreas Hnida 2024-02-14 16:01:14 +00:00
commit e3c43e06ff
120 changed files with 16894 additions and 0 deletions

21
vercel.json Executable file
View file

@ -0,0 +1,21 @@
{
"builds": [
{
"src": "vercel-build.sh",
"use": "@vercel/static-build",
"config": {
"distDir": "public"
}
}
],
"routes": [
{
"handle": "filesystem"
},
{
"src": "/(.*)",
"status": 404,
"dest": "/404.html"
}
]
}