jellyfish-web/webpack.prod.js
2023-10-25 22:25:24 +02:00

7 lines
196 B
JavaScript

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