We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c406418 commit f8fa6a7Copy full SHA for f8fa6a7
config/postcss.config.js
@@ -1,21 +1,24 @@
1
module.exports = (api) => {
2
return {
3
plugins: [
4
- require('postcss-import')(),
5
- require('postcss-url')(),
6
- require('postcss-preset-env')({
7
- stage: 2,
8
- features: {
9
- 'custom-properties': {
10
- warnings: true,
11
- preserve: true
+ 'postcss-import',
+ 'postcss-url',
+ 'postcss-nested',
+ [
+ 'postcss-preset-env',
+ {
+ stage: 2,
+ features: {
12
+ 'nesting-rules': false
13
}
14
- }),
15
- require('postcss-nested')(),
16
- require('postcss-custom-media')({
17
- preserve: false
18
- })
+ ],
+ 'postcss-custom-media',
19
+ preserve: false
20
+ }
21
+ ]
22
]
23
24
0 commit comments