Using Vue with an Express backend (express-openid-connect), I cannot access the predefined /login route

I’ve created a Vue SPA with an express backend.
The server is set up to use express-openid-connect for authentication. However, after initiliasing the router (app.use(auth(auth0config)), I cannot access the default auth0 routes, like /login.
I believe this is because vue-router is trying to access a Vue component, instead of my auth0 login page.

Is there a workaround for this? Is there something I am misunderstanding?
Thanks for reading this