mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
a48d466e6a
added missing packages for lint removed unecessary babel/polyfill
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
const common = require('./webpack.common');
|
|
const merge = require('webpack-merge');
|
|
|
|
module.exports = merge(common, {
|
|
mode: 'production',
|
|
entry: './scripts/site.js'
|
|
});
|