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
Clearly, this creates a route prefixed with '#!' which breaks my router which is configured for urls like localhost:8080/signup and not localhost:8080#!/signup.
This results in having only the / url supported and properly indexed. Any other url will simply render / content...
I tried to remove '#!' from your source code in the server to test it, and it works fine now.
This needs to be compatible with html5mode now.
Great work though, it served me a lot on multiple projects, thanks !
The text was updated successfully, but these errors were encountered:
I can see this code in the server.js file :
Clearly, this creates a route prefixed with '#!' which breaks my router which is configured for urls like
localhost:8080/signup
and notlocalhost:8080#!/signup
.This results in having only the / url supported and properly indexed. Any other url will simply render / content...
I tried to remove '#!' from your source code in the server to test it, and it works fine now.
This needs to be compatible with html5mode now.
Great work though, it served me a lot on multiple projects, thanks !
The text was updated successfully, but these errors were encountered: