I have a Meteor app and I'm using the iron:router package. Both when I deploy to meteor.com and when I'm developing locally, an iron router splash page shows up on the page with the line "Organize your meteor application". How can I get rid of this? I've tried a number of things but nothing seems to have helped.
Thanks
Iron Router runs on both the client and the server, so make sure the route is defined in both places, i.e. some not under /client
or /server
folders. See docs.
There is an option which allows you to provide your own "not found" template:
Router.configure({
notFoundTemplate: "notFound"
});
The default not found template is called __IronRouterNoRoutes__
See
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With