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
Vue router guards (i.e. middleware) parameters only gives the relative path (cf. https://router.vuejs.org/api/#fullpath). Scheme and host are never provided by Vue router in order to enforce portability across environments.
In AbstractChildWindow.ts it may happen that an undefined url is passed to readParams which is catched and rethrown as "Invalid response from windows". When a base is passed to URL constructor an undefined url becomes valid as first parameter. Thus I suggest :
Hi,
first THANK YOU for this port. I would like to report a small inconvenience.
only accepts full URL, including scheme and host.
Vue router guards (i.e. middleware) parameters only gives the relative path (cf. https://router.vuejs.org/api/#fullpath). Scheme and host are never provided by Vue router in order to enforce portability across environments.
I had to change from :
To something like
where
VUE_APP_CALLBACK_ROOT_URL
is an environment variable also used forUserManager({ redirect_uri })
setting. I found the former more readable.Thanks again
The text was updated successfully, but these errors were encountered: