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
Allow Iron.Location.configure({useHashPaths: true}); to be run before Location.start();
Right now there is no way I know of to set useHashPaths to true before the first route is handled, meaning http://localhost:3000/#!firstRoute will immediately goto http://localhost:3000/firstRoute because the router is unaware I want all routes to use hash paths instead of normal '/' slash paths.
I could be wrong. Maybe there is way to set this before the app is loaded? I checked iron_location and it seems it runs 'Location.start();' right away without allowing me to set configuration options first. Any way around this??
The text was updated successfully, but these errors were encountered:
Allow Iron.Location.configure({useHashPaths: true}); to be run before Location.start();
Right now there is no way I know of to set useHashPaths to true before the first route is handled, meaning http://localhost:3000/#!firstRoute will immediately goto http://localhost:3000/firstRoute because the router is unaware I want all routes to use hash paths instead of normal '/' slash paths.
I could be wrong. Maybe there is way to set this before the app is loaded? I checked iron_location and it seems it runs 'Location.start();' right away without allowing me to set configuration options first. Any way around this??
The text was updated successfully, but these errors were encountered: