Switch to static site rendering

This commit is contained in:
Zachary
2024-11-14 14:17:42 +01:00
parent 4a70831b6c
commit 67b49ee687
5 changed files with 31 additions and 90 deletions

17
vercel.json Normal file
View File

@@ -0,0 +1,17 @@
{
"builds": [
{
"src": "package.json",
"use": "@vercel/static-build",
"config": {
"distDir": "build"
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/$1"
}
]
}