From 2b56d1411c4c079104dc32bdac3053b9bf85a8b9 Mon Sep 17 00:00:00 2001 From: Laurent Eschenauer Date: Wed, 28 Aug 2013 17:28:06 +0200 Subject: [PATCH] Update bower path to match new bower target Closes #28 --- .gitignore | 1 + app.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3049bcd..165d3fd 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ config.js node_modules components +bower_components _site pictures temp.js diff --git a/app.js b/app.js index 92f0f2a..528e2b0 100644 --- a/app.js +++ b/app.js @@ -34,7 +34,7 @@ app.configure(function () { app.use(express.logger('dev')); app.use(app.router); app.use(express.static(path.join(__dirname, 'public'))); - app.use("/components", express.static(path.join(__dirname, 'components'))); + app.use("/components", express.static(path.join(__dirname, 'bower_components'))); }); app.configure('development', function () {