Skip to content

Commit

Permalink
fix: redirect all including trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Lin committed Feb 18, 2023
1 parent e91edbc commit 7dc7407
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
{ "source": "/en/latest", "destination": "/", "permanent": true },
{ "source": "/en/latest/", "destination": "/", "permanent": true },
{
"source": "/en/latest/:match*",
"destination": "/:match*",
"source": "/en/latest/:match(.*)",
"destination": "/:match(.*)",
"permanent": true
},
{ "source": "/en/stable", "destination": "/", "permanent": true },
{ "source": "/en/stable/", "destination": "/", "permanent": true },
{
"source": "/en/stable/:match*",
"destination": "/:match*",
"source": "/en/stable/:match(.*)",
"destination": "/:match(.*)",
"permanent": true
}
]
Expand Down

1 comment on commit 7dc7407

@vercel
Copy link

@vercel vercel bot commented on 7dc7407 Feb 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

doc-teku – ./

doc-teku-infura-web.vercel.app
docs.teku.consensys.net
doc-teku-git-main-infura-web.vercel.app

Please sign in to comment.