Skip to content

Commit

Permalink
stop infinite loop rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeshau committed Nov 11, 2024
1 parent 7cb6d9c commit 8080706
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions packages/app/vercel.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"rewrites": [
{
"source": "/(.*)",
"destination": "https://proof-of-twitter-vert.vercel.app/$1"
}
]
}

"rewrites": [
{
"source": "/api/(.*)",
"destination": "https://external-service.com/api/$1"
},
{
"source": "/(.*)",
"destination": "/"
}
]
}

0 comments on commit 8080706

Please sign in to comment.