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
**Please note that this is still highly experimental.**
6
8
@@ -27,6 +29,35 @@ var div = `<div class="${styles.inner}">...</div>`;
27
29
28
30
The generated css will contain locally-scoped versions of any css you have `require`'d, and will be written out to the file you specify in the `--output` or `-o` option.
29
31
32
+
### PostCSS Plugins
33
+
34
+
The following PostCSS plugins are enabled by default:
35
+
36
+
*[postcss-modules-local-by-default]
37
+
*[postcss-modules-extract-imports]
38
+
*[postcss-modules-scope]
39
+
40
+
(i.e. the [CSS Modules] specification).
41
+
42
+
You can supply your own additional PostCSS Plugins by passing `--use|-u` to `css-modulesify`.
43
+
44
+
In addion you may also wish to configure defined PostCSS plugins by passing `--plugin.option true`.
0 commit comments