16 lines
627 B
JSON
16 lines
627 B
JSON
{
|
|
"buildCommand": "npm run build",
|
|
"outputDirectory": "dist",
|
|
"framework": "vite",
|
|
"rewrites": [
|
|
{ "source": "/", "destination": "/de/" },
|
|
{ "source": "/technical", "destination": "/de/technical" },
|
|
{ "source": "/de/", "destination": "/de/index.html" },
|
|
{ "source": "/de/technical", "destination": "/de/technical/index.html" },
|
|
{ "source": "/en/", "destination": "/en/index.html" },
|
|
{ "source": "/en/technical", "destination": "/en/technical/index.html" },
|
|
{ "source": "/privacy-policy", "destination": "/privacy-policy.html" },
|
|
{ "source": "/(.*)", "destination": "/index.html" }
|
|
]
|
|
}
|