I have two different project deployed right now, project A and project B.
My main domain, let’s say example.com is connected to project A.
Now I want to deploy project B in example.com/portfolio as a subdirectory, so I was taking this approach where I located vercel.json in the root directory of project A.
{
"rewrites": [
{
"source": "/portfolio/",
"destination": "https://project-b.vercel.app/"
}
]
}
Is there any steps I’m missing here?