Skip to content

Commit

Permalink
for vercel
Browse files Browse the repository at this point in the history
  • Loading branch information
yogendradevil committed Sep 29, 2023
1 parent 987ea45 commit 056b9a2
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
{
"rewrites": [
{ "source": "/(.*)", "destination": "/" }
"version": 2,
"routes": [
{
"src": "/public/(.*)",
"dest": "/public/$1"
},
{
"src": "/securedata",
"dest": "/securedata.html"
},
{
"src": "/stext",
"dest": "/stext.html"
},
{
"src": "/getData",
"dest": "/getData.html"
},
{
"src": "/(.*)",
"dest": "/index.html"
}
]
}
}

0 comments on commit 056b9a2

Please sign in to comment.