summaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app.js b/app.js
index fbf081d..202f28d 100644
--- a/app.js
+++ b/app.js
@@ -11,6 +11,7 @@ app.get('/', function(req,res) {
});
app.use('/client', express.static(__dirname + '/client'));
+app.use('/favicon.ico', express.static(__dirname + '/client/favicon.ico'));
serv.listen(2000);
console.log("Server started.");