astro_advokat/vercel.json
2026-03-30 20:21:41 +05:00

22 lines
No EOL
340 B
JSON

{
"version": 2,
"framework": "astro",
"settings": {
"frameworkVersion": "5.17.1"
},
"builds": [
{
"src": "frontend/package.json",
"use": "@vercel/static-build",
"config": {
"distDir": "dist"
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "frontend/dist/$1"
}
]
}