This commit is contained in:
syuilo 2017-11-23 03:37:13 +09:00
parent 31f9de1324
commit 1809800980
1 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,9 @@ app.use('/assets', express.static(`${__dirname}/assets`, {
maxAge: ms('7 days')
}));
/**
* ServiceWroker
*/
app.get(/^\/sw\.(.+?)\.js$/, (req, res) => res.sendFile(`${__dirname}/assets/sw.${req.params[0]}.js`));
/**