1
0
Fork 1
mirror of https://example.com synced 2024-11-24 00:06:39 +09:00
This commit is contained in:
syuilo 2017-11-23 03:37:13 +09:00
parent 31f9de1324
commit 1809800980

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`));
/**