Skip to content

Commit

Permalink
vercel
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaki-1052 committed Apr 1, 2024
1 parent b80930b commit 932dbee
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"routes": [
{
"src": "/portal",
"src": "^/portal/?$",
"dest": "/public/portal.html"
},
{
"src": "/uploads/(.*)",
"src": "^/uploads/(.*)$",
"dest": "/public/uploads/$1"
},
{
"src": "^/$",
"dest": "/public/portal.html"
},
{
"src": "/(.*)",
"dest": "/public/portal.html"
Expand Down

0 comments on commit 932dbee

Please sign in to comment.