#309 and some cleanups

This commit is contained in:
syuilo
2017-03-22 16:19:32 +09:00
parent 5306bb518d
commit b646877e8b
49 changed files with 44 additions and 1859 deletions

View File

Before

Width:  |  Height:  |  Size: 141 KiB

After

Width:  |  Height:  |  Size: 141 KiB

View File

@ -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;