Search code examples
meteoriron-router

New content appear in my website when adding iron router package


I just added iron:router package to my meteor project and now at the end of my website it shows this

enter image description here

and i can't find it in my html file to delete it,

How can i remove it from my website?


Solution

  • It will disappear when you add any route in your JS file. Add the following empty route to your JS file and start from there.

    Router.route('/', function () {
    
    });
    

    Also read the iron-router docs about getting started. http://iron-meteor.github.io/iron-router/