Skip to content

Commit bd8cb26

Browse files
committed
fix: redirect /nox-protocol/ trailing slash to docs.noxprotocol.io
The /nox-protocol/:path+ rule required at least one path segment, so /nox-protocol/ (with a trailing slash and empty path) matched neither it nor the bare /nox-protocol rule and returned a 404. Switch the source and destination to :path* so the trailing-slash case maps to the new domain root.
1 parent 7036968 commit bd8cb26

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vercel.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"cleanUrls": true,
66
"redirects": [
77
{
8-
"source": "/nox-protocol/:path+",
9-
"destination": "https://docs.noxprotocol.io/:path+",
8+
"source": "/nox-protocol/:path*",
9+
"destination": "https://docs.noxprotocol.io/:path*",
1010
"permanent": true
1111
},
1212
{

0 commit comments

Comments
 (0)