Migrate to tslint 5.1.0
This commit is contained in:
parent
798d1610f0
commit
b095efaee5
16 changed files with 107 additions and 95 deletions
|
|
@ -13,11 +13,11 @@ app.disable('x-powered-by');
|
|||
app.locals.cache = true;
|
||||
|
||||
app.get('/himasaku.png', (req, res) => {
|
||||
res.sendFile(__dirname + '/assets/himasaku.png');
|
||||
res.sendFile(`${__dirname}/assets/himasaku.png`);
|
||||
});
|
||||
|
||||
app.get('*', (req, res) => {
|
||||
res.sendFile(__dirname + '/assets/index.html');
|
||||
res.sendFile(`${__dirname}/assets/index.html`);
|
||||
});
|
||||
|
||||
module.exports = app;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue