Skip to content

Commit 73ae3be

Browse files
committed
chore: add vercel config for translations
1 parent 98628dd commit 73ae3be

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

vercel.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"$schema": "https://openapi.vercel.sh/vercel.json",
3+
"headers": [
4+
{
5+
"source": "/assets/(.*)",
6+
"headers": [
7+
{
8+
"key": "Cache-Control",
9+
"value": "max-age=31536000, immutable"
10+
}
11+
]
12+
},
13+
{
14+
"source": "/(.*).png",
15+
"headers": [
16+
{
17+
"key": "Cache-Control",
18+
"value": "max-age=604800, immutable"
19+
}
20+
]
21+
}
22+
],
23+
"rewrites": [
24+
{
25+
"source": "/:path*",
26+
"destination": "/:path*.html"
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)