You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nuxt generally supports that and adding something along the lines of
// potentially run in a subfolder (e.g. /manage/ in the default radiator installation)router: {base: process.env.NUXT_ROOT||'/'},
to the nuxt config gets us mainly there. However, some links still lead to / so inner app link generation needs to use this information everywhere instead of just doing hrefs with '/something/'
In a deployment scenario where we want to run everything on one domain, we'd like to run the cms e.g. at https://radiator.mydomain.com/manage/
Nuxt generally supports that and adding something along the lines of
to the nuxt config gets us mainly there. However, some links still lead to
/
so inner app link generation needs to use this information everywhere instead of just doing hrefs with '/something/'nuxt router docs
So the idea would be to then serve the cms using an nginx proxy conf like this:
The text was updated successfully, but these errors were encountered: