astro/www/vercel.json

21 lines
399 B
JSON
Raw Normal View History

{
"cleanUrls": true,
"trailingSlash": false,
"redirects": [
2021-07-20 19:05:48 +00:00
{
"source": "/docs/:match*",
"destination": "https://docs.astro.build/:match*",
"permanent": false
},
{
"source": "/posts/:match*",
"destination": "blog/:match*",
"permanent": false
},
2021-07-20 19:05:48 +00:00
{
"source": "/chat",
"destination": "https://discord.gg/grF4GTXXYm"
}
]
}