Skip to content

Commit d20200f

Browse files
authored
chore: add vercel config for translations (#2664)
1 parent 98628dd commit d20200f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

vercel.json

+29
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)