aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2020-11-16 15:01:22 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:56 +0300
commit5134de696f36abbd23ec5f0649e7e7a91790cd05 (patch)
tree69397d4f06262d403f8e987f59e2b9523070c5ec /vnext/webpack.config.js
parent2882c49927b6294df1381ae7c81a38f3bfd86c59 (diff)
postcss-preset-env stage 0 is required for custom-media
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r--vnext/webpack.config.js2
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 } ]
]
}
}