mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 07:30:59 -07:00
Improve readability
This commit is contained in:
parent
a1b3064d8c
commit
6b2b805c8a
1 changed files with 4 additions and 2 deletions
|
@ -43,12 +43,14 @@ app.use('/assets', express.static(`${__dirname}/assets`, {
|
|||
/**
|
||||
* ServiceWroker
|
||||
*/
|
||||
app.get(/^\/sw\.(.+?)\.js$/, (req, res) => res.sendFile(`${__dirname}/assets/sw.${req.params[0]}.js`));
|
||||
app.get(/^\/sw\.(.+?)\.js$/, (req, res) =>
|
||||
res.sendFile(`${__dirname}/assets/sw.${req.params[0]}.js`));
|
||||
|
||||
/**
|
||||
* Manifest
|
||||
*/
|
||||
app.get('/manifest.json', (req, res) => res.sendFile(`${__dirname}/assets/manifest.json`));
|
||||
app.get('/manifest.json', (req, res) =>
|
||||
res.sendFile(`${__dirname}/assets/manifest.json`));
|
||||
|
||||
/**
|
||||
* Common API
|
||||
|
|
Loading…
Reference in a new issue