summaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authorjak1 <jak1@themanaworld.org>2023-01-13 21:24:31 +0100
committerjak1 <jak1@themanaworld.org>2023-01-13 21:24:31 +0100
commit88dd93374aab6417d7bc9f1c996d3aec0d9f5c20 (patch)
tree16e46f3fdb53a8336197b4ff4ab982701b081e35 /app.js
parent4bdc18de454724f09db27a133df9ea3060b4738f (diff)
downloadthepixelworld-master.tar.gz
thepixelworld-master.tar.bz2
thepixelworld-master.tar.xz
thepixelworld-master.zip
added some char animation (still a bit buggy)HEADmaster
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.");