diff --git a/packages/app/vercel.json b/packages/app/vercel.json index 0133b9e..91ce689 100644 --- a/packages/app/vercel.json +++ b/packages/app/vercel.json @@ -1,8 +1,16 @@ { - "routes": [ + "rewrites": [ { - "src": "/(.*)", - "dest": "/index.html" + "source": "/", + "destination": "/" + }, + { + "source": "/about", + "destination": "/about" + }, + { + "source": "/(.*)", + "destination": "https://proof-of-twitter-vert.vercel.app/$1" } ] }