0
0
mirror of https://github.com/jellyfin/jellyfin-web.git synced 2025-04-12 02:40:08 +00:00
Files
jellyfin-web/webpack.prod.js

12 lines
241 B
JavaScript
Raw Normal View History

2021-06-15 00:44:00 -04:00
const { merge } = require('webpack-merge');
2019-09-30 23:51:46 +03:00
2025-03-25 15:36:32 -04:00
const common = require('./webpack.common');
2019-09-30 23:51:46 +03:00
module.exports = merge(common, {
2020-05-04 12:44:12 +02:00
mode: 'production',
2023-10-20 12:03:09 -04:00
entry: {
2025-03-25 15:36:32 -04:00
...common.entry,
'serviceworker': './serviceworker.js'
2023-10-20 12:03:09 -04:00
}
2019-09-30 23:51:46 +03:00
});