diff options
author | Vitaly Takmazov | 2020-10-19 20:33:47 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2020-10-19 20:33:47 +0300 |
commit | e1f15d35e905c45cc7bf85b81544d14f67caa8cf (patch) | |
tree | ecac4cb469af7bcf78c826f9ee09ef93dacb21dd /webpack.config.js | |
parent | 52044e7dbb0efca9c6672d154f5edfacccfe4091 (diff) |
postcss-preset-env stage 0 required for custom-media
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 843e9b69..77844515 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -52,7 +52,7 @@ module.exports = (env, argv) => { postcssOptions: { plugins: [ 'stylelint', - 'postcss-preset-env' + ['postcss-preset-env', { stage: 0 } ] ] } } |