What would be the easiest way to run 2 astro js apps concurrently?

I have two astro applications, one is the main application, one a landing page.

I want them both to live on the root domain. This is because the main application is public facing so I want a simple, consistent URL, no “app.acme.com”, just “acme.com/some-page”.

I get how to setup URL writes to point to another URL. I get how to put both apps into a monorepo. What I don’t get is: how do I run both app concurrently on Vercel, if that’s even possible? Because I feel like one project = one running app on one port?

Rewrites are a good solution if you want to make two separate projects visually use the same domain. There’s a guide that outlines the basic setup. Please give that a try and let me know if it works for you :slightly_smiling_face:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.