iron-meteor / iron-router

A client and server side router designed specifically for Meteor.
MIT License
1.98k stars 413 forks source link

disable iron router apart from one url #1581

Closed tomtom87 closed 7 years ago

tomtom87 commented 7 years ago

I have a app made in react router and would like to use a admin panel that is using iron router. The problem is the iron router is taking over control from the react router and asking me for a route for /

How can I make it so that iron router only is working with it's /admin url?

chrisbutler commented 7 years ago

Router.options.autoStart = false; should work

tomtom87 commented 7 years ago

@chrisbutler thanks man