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

Merge remote-tracking branch 'upstream/master' into syncplay

This commit is contained in:
gion 2020-05-27 10:42:29 +02:00
commit 385f0a0beb
213 changed files with 3867 additions and 2697 deletions

View file

@ -2,7 +2,6 @@ const path = require('path');
const common = require('./webpack.common');
const merge = require('webpack-merge');
const packageConfig = require('./package.json');
const postcssConfig = require('./postcss.config.js');
module.exports = merge(common, {
mode: 'development',
@ -31,7 +30,11 @@ module.exports = merge(common, {
'css-loader',
{
loader: 'postcss-loader',
options: postcssConfig()
options: {
config: {
path: __dirname
}
}
}
]
},