I want to serve a static HTML file from MeteorJS\'s public folder (as is possible with Rails and Express). The reason I\'m doing this is because I have one template for the
this is what I put in bootstrap.js
bootstrap.js
Router.route('/', { where: 'server' }).get(function() { var contents; contents = Assets.getText('index.html'); return this.response.end(contents); });