Rename service worker to not clash with mastodon sw.

This commit is contained in:
lain 2019-01-28 17:52:01 +01:00
parent bb2ee04f04
commit 2ce6fba2ba
1 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,8 @@ module.exports = {
},
plugins: [
new ServiceWorkerWebpackPlugin({
entry: path.join(__dirname, '..', 'src/sw.js')
entry: path.join(__dirname, '..', 'src/sw.js'),
filename: 'sw-pleroma.js'
})
]
}