2021-06-03 07:14:28 -07:00
|
|
|
const path = require('path');
|
2020-05-04 03:44:12 -07:00
|
|
|
const common = require('./webpack.common');
|
2021-06-14 21:44:00 -07:00
|
|
|
const { merge } = require('webpack-merge');
|
2021-06-03 07:14:28 -07:00
|
|
|
const WorkboxPlugin = require('workbox-webpack-plugin');
|
2019-09-30 13:51:46 -07:00
|
|
|
|
|
|
|
module.exports = merge(common, {
|
2020-05-04 03:44:12 -07:00
|
|
|
mode: 'production',
|
2022-09-29 09:50:25 -07:00
|
|
|
entry: { 'main.jellyfin': './index.jsx' },
|
2021-06-03 07:14:28 -07:00
|
|
|
plugins: [
|
|
|
|
new WorkboxPlugin.InjectManifest({
|
|
|
|
swSrc: path.resolve(__dirname, 'src/serviceworker.js'),
|
|
|
|
swDest: 'serviceworker.js'
|
|
|
|
})
|
|
|
|
]
|
2019-09-30 13:51:46 -07:00
|
|
|
});
|