FlowRouter.initialize(options);options{Object}hashbang{Boolean} - Enable hashbang urls likemydomain.com/#!/mypath, default:falsepage{Object} - Options for page.jsclick{Boolean} - When false,<a href>tags in your app won't automatically call flow router and will do the browser's default page load instead. This is identical to howreact-routerbehaves. You can create a<Link />component that callsFlowRouter.goin itsonClickhandler. This way, you have more control over your links. Default:true- Other options can be found in a
page.jsdocs
- Returns {void}
By default, FlowRouter initializes the routing process in a Meteor.startup() callback. This works for most of the applications. But, some applications have custom initializations and FlowRouter needs to initialize after that.
So, that's where FlowRouter.wait() comes to save you. You need to call it directly inside your JavaScript file. After that, whenever your app is ready call FlowRouter.initialize().
FlowRouter.wait();
WhenEverYourAppIsReady(() => {
FlowRouter.initialize();
});