1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/webpack.prod.js

16 lines
472 B
JavaScript
Raw Normal View History

const path = require('path');
2020-05-04 12:44:12 +02:00
const common = require('./webpack.common');
2021-06-15 00:44:00 -04:00
const { merge } = require('webpack-merge');
const WorkboxPlugin = require('workbox-webpack-plugin');
2019-09-30 23:51:46 +03:00
module.exports = merge(common, {
2020-05-04 12:44:12 +02:00
mode: 'production',
2022-09-06 01:45:59 -04:00
entry: { 'main.jellyfin': './scripts/site.js' },
plugins: [
new WorkboxPlugin.InjectManifest({
swSrc: path.resolve(__dirname, 'src/serviceworker.js'),
swDest: 'serviceworker.js'
})
]
2019-09-30 23:51:46 +03:00
});