diff --git a/server.js b/server.js index cab9bcf..a7d1a88 100644 --- a/server.js +++ b/server.js @@ -9,13 +9,13 @@ __meteor_bootstrap__.app // Need to create a Fiber since we're using synchronous http calls Fiber(function() { try{ - var code = fs.readFileSync(path.resolve('bundle/app.html')); + var code = fs.readFileSync(path.resolve('app.html')); }catch(e){ var code = fs.readFileSync(path.resolve('.meteor/local/build/app.html')); } var angular = ""; try{ - angular = fs.readFileSync(path.resolve('bundle/static/angular.html')); + angular = fs.readFileSync(path.resolve('static/angular.html')); }catch(e){ if(fs.existsSync("public/angular.html")){ angular = fs.readFileSync(path.resolve('public/angular.html'));