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
{{ message }}
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
We have a dev server for handling local signin that is on separate port. This seems to crash the router with the following message:
Uncaught DOMException: Failed to execute 'pushState' on 'History': A history state object with URL 'https://localhost:9080/xxxxx' cannot be created in a document with origin 'https://localhost'
Thanks for you this great library!
The text was updated successfully, but these errors were encountered:
To fix, we need to account for port number, but bear in mind most hrefs don't contain the default port number. For full IE support the implementation would look more like iron-location.
# Redirect Internet Explorer users to Chrome download page
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond%{HTTP_USER_AGENT}(MSIE|IE11|Trident\/7\.)[NC]RewriteRule^(.*)$https://www.google.com/chrome/[NC,L,R]
</IfModule>
PS: Not saying this is necessarily a good idea haha
We have a dev server for handling local signin that is on separate port. This seems to crash the router with the following message:
Thanks for you this great library!
The text was updated successfully, but these errors were encountered: