Skip to content

Commit e15fd3b

Browse files
committed
feat: add permanent flag to redirects in Vercel configuration
1 parent 17d9299 commit e15fd3b

File tree

1 file changed

+22
-11
lines changed

1 file changed

+22
-11
lines changed

vercel.json

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,47 +3,58 @@
33
"redirects": [
44
{
55
"source": "/tools/:path*",
6-
"destination": "/"
6+
"destination": "/",
7+
"permanent": true
78
},
89
{
910
"source": "/overview/what-we-do",
10-
"destination": "/"
11+
"destination": "/",
12+
"permanent": true
1113
},
1214
{
1315
"source": "/overview/helloWorld",
14-
"destination": "/"
16+
"destination": "/",
17+
"permanent": true
1518
},
1619
{
1720
"source": "/overview/helloWorld/:path*",
18-
"destination": "/"
21+
"destination": "/",
22+
"permanent": true
1923
},
2024
{
2125
"source": "/overview/use-case-demo",
22-
"destination": "/"
26+
"destination": "/",
27+
"permanent": true
2328
},
2429
{
2530
"source": "/overview/use-case-demo/:path*",
26-
"destination": "/"
31+
"destination": "/",
32+
"permanent": true
2733
},
2834
{
2935
"source": "/for-developers/:path*",
30-
"destination": "/"
36+
"destination": "/",
37+
"permanent": true
3138
},
3239
{
3340
"source": "/for-workers/:path*",
34-
"destination": "/"
41+
"destination": "/",
42+
"permanent": true
3543
},
3644
{
3745
"source": "/key-concepts/:path*",
38-
"destination": "/"
46+
"destination": "/",
47+
"permanent": true
3948
},
4049
{
4150
"source": "/use-cases/:path*",
42-
"destination": "/"
51+
"destination": "/",
52+
"permanent": true
4353
},
4454
{
4555
"source": "/help/:path*",
46-
"destination": "/"
56+
"destination": "/",
57+
"permanent": true
4758
}
4859
]
4960
}

0 commit comments

Comments
 (0)