Skip to content

Commit

Permalink
fix: redirect try 3. with trailing slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
tnolet committed Jan 8, 2025
1 parent 287f338 commit ef3d5f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,36 +45,36 @@
"permanent": true
},
{
"source": "/docs/:path*",
"source": "/docs/:path*/",
"has": [
{
"type": "host",
"value": "docs.checklyhq.com"
}
],
"destination": "https://www.checklyhq.com/docs/:path*",
"destination": "https://www.checklyhq.com/docs/:path*/",
"permanent": true
},
{
"source": "/learn/:path*",
"source": "/learn/:path*/",
"has": [
{
"type": "host",
"value": "docs.checklyhq.com"
}
],
"destination": "https://www.checklyhq.com/learn/:path*",
"destination": "https://www.checklyhq.com/learn/:path*/",
"permanent": true
},
{
"source": "/guides/:path*",
"source": "/guides/:path*/",
"has": [
{
"type": "host",
"value": "docs.checklyhq.com"
}
],
"destination": "https://www.checklyhq.com/guides/:path*",
"destination": "https://www.checklyhq.com/guides/:path*/",
"permanent": true
},
{ "source": "/learn/headless/avoiding-hard-waits(/)?", "destination": "/learn/playwright/waits-and-timeouts", "permanent": true },
Expand Down

0 comments on commit ef3d5f9

Please sign in to comment.