Nuxt3 Multi-tenant app with NGINX reverse proxy and custom domains
Hello, I was wondering if it's possible to make a multi-tenant app using [param] as parent of pages
[tenant]
-> dashboard.vue
-> index.vue
on host
localhost:3000/tenant/dashboard
on location /
with tenant.com hostname with proxy pass on localhost:3000/tenant to hide param in URI
tenant.com/dashboard
It works with static pages addresses but router navigation is breaking when calling navigateTo because of the differences in browser URL and server inner routing.
0 Replies