mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2025-04-04 10:35:45 +00:00
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
const { merge } = require('webpack-merge');
|
|
|
|
const common = require('./webpack.common');
|
|
|
|
module.exports = merge(common, {
|
|
mode: 'production',
|
|
entry: {
|
|
...common.entry,
|
|
'serviceworker': './serviceworker.js'
|
|
}
|
|
});
|