You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/options.md
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,8 @@
30
30
31
31
### postcss
32
32
33
-
- type: `Array` or `Function`
33
+
- type: `Array` or `Function` or `Object`
34
+
-`Object` format only supported in ^8.5.0
34
35
35
36
Specify custom PostCSS plugins to be applied to CSS inside `*.vue` files. If using a function, the function will called using the same loader context and should return an Array of plugins.
36
37
@@ -46,6 +47,17 @@
46
47
}
47
48
```
48
49
50
+
This option can also be an object that contains options to be passed to the PostCSS processor. This is useful when you are using PostCSS projects that relies on custom parser/stringifiers:
0 commit comments