diff options
author | Vitaly Takmazov | 2020-11-16 15:01:22 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:56 +0300 |
commit | 5134de696f36abbd23ec5f0649e7e7a91790cd05 (patch) | |
tree | 69397d4f06262d403f8e987f59e2b9523070c5ec /vnext/webpack.config.js | |
parent | 2882c49927b6294df1381ae7c81a38f3bfd86c59 (diff) |
postcss-preset-env stage 0 is required for custom-media
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index 29af95b5..1c7ed6d2 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -48,7 +48,7 @@ module.exports = (env, argv) => { postcssOptions: { plugins: [ 'stylelint', - 'postcss-preset-env' + ['postcss-preset-env', { stage: 0 } ] ] } } |