Redirecting Frappe UI Pages on Building

Hey folks, a little confused on how to redirect in a site.
I’ve installed a site, say quicktest.localhost:8000 (and in prod, would be quicktest.space)
I’ve installed the lms app, and a custom app, quicktest

I’ve used doppio to create vue pages for the custom app, but I’m really not sure how to get those to be the default website that people see when they land on quicktest.localhost:8000 or quicktest.space

I earlier had jinja pages, and those had worked fine, but shifting to Vue with frappe-ui, kind of stuck here

Would appreciate help! thanku :slight_smile:

More on this, when I’ve replaced router.js with

const router = createRouter({
  history: createWebHistory("/"),
  routes,
})

and changed website_route_rules in hooks.py to this

website_route_rules = [{"from_route": "/<path:app_path>", "to_route": "frontend"}]

The SPA works fine when i log into quicktest:8000
However, redirects to LMS and Desk are met with a blank white page.