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
Calls in js should also either be aware of it or always use relative addresses (e.g. stuff like history.navigate("/home") and fetch("/oauth/logout", should reference the base path or be relative where possible) - looks like this can be handled by vite by using ${import.meta.env.BASE_URL}/... for urls.
The text was updated successfully, but these errors were encountered:
A requirement for #24 is being able to have the frontend work even when it is configured to run on a different base path, e.g.
/feat/foo
instead of/
.Played around with this a bit and got it kind of working, but not all the way. Changes I think are required are:
history.navigate("/home")
andfetch("/oauth/logout",
should reference the base path or be relative where possible) - looks like this can be handled by vite by using${import.meta.env.BASE_URL}/...
for urls.The text was updated successfully, but these errors were encountered: