diff options
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 39 |
1 files changed, 1 insertions, 38 deletions
diff --git a/webpack.config.js b/webpack.config.js index 7c4a6e2651..1d6f166333 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -168,29 +168,10 @@ module.exports = { loader: 'css-loader', options: { sourceMap: true, - importLoaders: 1, url: filterCssImport, import: filterCssImport, }, }, - { - loader: 'postcss-loader', - options: { - sourceMap: true, - postcssOptions: { - plugins: [ - [ - 'postcss-preset-env', - { - features: { - 'system-ui-font-family': false, - }, - }, - ], - ], - }, - }, - }, ], }, { @@ -203,30 +184,12 @@ module.exports = { loader: 'css-loader', options: { sourceMap: true, - importLoaders: 2, + importLoaders: 1, url: filterCssImport, import: filterCssImport, }, }, { - loader: 'postcss-loader', - options: { - sourceMap: true, - postcssOptions: { - plugins: [ - [ - 'postcss-preset-env', - { - features: { - 'system-ui-font-family': false, - }, - }, - ], - ], - }, - }, - }, - { loader: 'less-loader', options: { sourceMap: true, |