summaryrefslogtreecommitdiff
path: root/src/himasaku/server.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-22 16:19:32 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-22 16:19:32 +0900
commitb646877e8bf73650859c52fc00a601da5b34bfc0 (patch)
tree347c7a8d7744b8da7d966fe0422dad6f38a8a610 /src/himasaku/server.ts
parent[Client] Fix design (diff)
downloadsharkey-b646877e8bf73650859c52fc00a601da5b34bfc0.tar.gz
sharkey-b646877e8bf73650859c52fc00a601da5b34bfc0.tar.bz2
sharkey-b646877e8bf73650859c52fc00a601da5b34bfc0.zip
#309 and some cleanups
Diffstat (limited to 'src/himasaku/server.ts')
-rw-r--r--src/himasaku/server.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/himasaku/server.ts b/src/himasaku/server.ts
index e4fb0ef177..17edc66484 100644
--- a/src/himasaku/server.ts
+++ b/src/himasaku/server.ts
@@ -13,11 +13,11 @@ app.disable('x-powered-by');
app.locals.cache = true;
app.get('/himasaku.png', (req, res) => {
- res.sendFile(__dirname + '/resources/himasaku.png');
+ res.sendFile(__dirname + '/assets/himasaku.png');
});
app.get('*', (req, res) => {
- res.sendFile(__dirname + '/resources/index.html');
+ res.sendFile(__dirname + '/assets/index.html');
});
module.exports = app;