Skip to content Skip to sidebar Skip to footer

Meteor Routing Error : There Is No Route For The Path: /

I have updated Meteor to Meteor 1.3.2.4. and facing the issue. I have also updated all the packages in their latest version. Error : There is no route for the path: / I tried the b

Solution 1:

I had this problem, and fixed it by getting rid of console errors that were present in the development build.

Think the reason my development build was working, but production build wasn't, is because of JS files being concatenated for production, meaning that this error was preventing subsequent code from running.

So, motto is, make sure there are no errors being thrown, as they will lead to more issues when concatenating file for production!

(The package in question was autoform-hint, but don't think that is particularly relevant.)

Post a Comment for "Meteor Routing Error : There Is No Route For The Path: /"