Skip to content

Commit

Permalink
Fixed favicon.ico path.
Browse files Browse the repository at this point in the history
  • Loading branch information
pilwon committed Oct 24, 2013
1 parent 05c718a commit b7a53ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server/express.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function _configure() {
_server.engine('hbs', hbs.engine);
_server.set('view engine', 'hbs');
_server.set('views', _app.dir + '/views');
_server.use(express.favicon(path.join(_app.dir, '..', _app.project.path.client, 'favicon.ico')));
_server.use(express.favicon(path.join(_app.dir, '..', _app.project.path.static, 'favicon.ico')));
_server.use(express.logger('dev'));
if (_.isFunction(_app.registerWinstonLogger)) {
_app.registerWinstonLogger();
Expand Down

0 comments on commit b7a53ca

Please sign in to comment.