forked from FoundKeyGang/FoundKey
Send servicewroker script
This commit is contained in:
parent
d692bb3c52
commit
0ca5237139
1 changed files with 5 additions and 3 deletions
|
@ -66,9 +66,11 @@ router.get('/apple-touch-icon.png', async ctx => {
|
|||
});
|
||||
|
||||
// ServiceWroker
|
||||
//router.get(/^\/sw\.(.+?)\.js$/, async ctx => {
|
||||
// await send(ctx, `${client}/assets/sw.${ctx.params[0]}.js`);
|
||||
//});
|
||||
router.get(/^\/sw\.(.+?)\.js$/, async ctx => {
|
||||
await send(ctx, `/assets/sw.${ctx.params[0]}.js`, {
|
||||
root: client
|
||||
});
|
||||
});
|
||||
|
||||
// Manifest
|
||||
router.get('/manifest.json', async ctx => {
|
||||
|
|
Loading…
Reference in a new issue