1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix development webpack target for live reload

This commit is contained in:
Bill Thornton 2021-06-03 10:13:47 -04:00
parent 5d38d09982
commit 066690dd8b

View file

@ -3,6 +3,8 @@ const common = require('./webpack.common');
const merge = require('webpack-merge');
module.exports = merge(common, {
// In order for live reload to work we must use "web" as the target not "browserlist"
target: 'web',
mode: 'development',
entry: './scripts/site.js',
devtool: 'source-map',