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
2023-10-25 22:25:24 +02:00

10 lines
255 B
JavaScript

const common = require('./webpack.common');
const { merge } = require('webpack-merge');
module.exports = merge(common, {
mode: 'production',
entry: {
'main.jellyfin': './index.jsx',
'serviceworker': './serviceworker.js'
}
});