From b646877e8bf73650859c52fc00a601da5b34bfc0 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 22 Mar 2017 16:19:32 +0900 Subject: #309 and some cleanups --- src/himasaku/server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/himasaku/server.ts') 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; -- cgit v1.2.3-freya