Skip to content

Commit

Permalink
feat: redirect without trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
dwelle committed Nov 6, 2024
1 parent a6b2b8e commit 462f4fb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"redirects": [
{
"source": "/(.*)",
"source": "/(.*)/?",
"destination": "https://plus.excalidraw.com/blog/$1",
"permanent": true
},
{
"source": "/",
"destination": "https://plus.excalidraw.com/blog",
"permanent": true
}
]
}

0 comments on commit 462f4fb

Please sign in to comment.