codigo0/vercel.json

25 lines
448 B
JSON
Raw Normal View History

{
"buildCommand": "npm run build",
"outputDirectory": "dist",
"devCommand": "npm run dev",
"installCommand": "npm install",
"framework": "vite",
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"headers": [
{
"source": "/manual/(.*\\.md)",
"headers": [
{
"key": "Content-Type",
"value": "text/markdown; charset=utf-8"
}
]
}
]
}