From 8a4f4f56389111735d7b255e8dad3e5513893da7 Mon Sep 17 00:00:00 2001 From: Gunther Brunner Date: Tue, 25 Mar 2014 19:29:58 +0900 Subject: [PATCH] -Added favicon. --- lib/roles/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/roles/app.js b/lib/roles/app.js index b5cfa09f..33e24286 100644 --- a/lib/roles/app.js +++ b/lib/roles/app.js @@ -48,6 +48,9 @@ module.exports = function(options) { app.use('/static/devices', datautil.middleware()) app.use('/static', express.static(pathutil.resource('app'))) + app.use(express.favicon(pathutil.resource( + 'bower_components/stf-graphics/logo/exports/STF-128.png'))) + if (!options.disableWatch) { app.use(webpack) }