Open gwendall opened 9 years ago
Navigating to an undeclared route reloads the page to render the notFoundTemplate instead of rendering it on the client-side. Reproduction here: http://iron-bug.meteor.com
Ended up hacking it as below.
Meteor.startup(function() { Router.route("/(.*)", { name: "notFound", template: "notFound", action: function () { this.render(); } }); });
Navigating to an undeclared route reloads the page to render the notFoundTemplate instead of rendering it on the client-side. Reproduction here: http://iron-bug.meteor.com