blob: 39581473d25856e2cd2db38b681f706d92fd79e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
"cleanUrls": true,
"trailingSlash": false,
"redirects": [
{
"source": "/docs/:match*",
"destination": "https://docs.astro.build/:match*",
"permanent": false
},
{
"source": "/posts/:match*",
"destination": "blog/:match*",
"permanent": false
},
{
"source": "/chat",
"destination": "https://discord.gg/grF4GTXXYm"
}
],
"rewrites": [
{
"source": "/play/:match*",
"destination": "https://play.astro.build/play/:match*"
}
]
}
|