Skip to content

Commit

Permalink
fix: redirect try 2 (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnolet authored Jan 8, 2025
1 parent a6dcf37 commit 287f338
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,18 @@
],
"redirects": [
{
"source": "/:path*",
"source": "/",
"has": [
{
"type": "host",
"value": "docs.checklyhq.com"
}
],
"destination": "https://www.checklyhq.com/docs/",
"permanent": true
},
{
"source": "/docs/:path*",
"has": [
{
"type": "host",
Expand All @@ -44,6 +55,28 @@
"destination": "https://www.checklyhq.com/docs/:path*",
"permanent": true
},
{
"source": "/learn/:path*",
"has": [
{
"type": "host",
"value": "docs.checklyhq.com"
}
],
"destination": "https://www.checklyhq.com/learn/:path*",
"permanent": true
},
{
"source": "/guides/:path*",
"has": [
{
"type": "host",
"value": "docs.checklyhq.com"
}
],
"destination": "https://www.checklyhq.com/guides/:path*",
"permanent": true
},
{ "source": "/learn/headless/avoiding-hard-waits(/)?", "destination": "/learn/playwright/waits-and-timeouts", "permanent": true },
{ "source": "/learn/headless/basics-clicking-typing(/)?", "destination": "/learn/playwright/clicking-typing-hovering", "permanent": true },
{ "source": "/learn/headless/basics-debugging(/)?", "destination": "/learn/playwright/debugging/", "permanent": true },
Expand Down

0 comments on commit 287f338

Please sign in to comment.