This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const postcssOptions = { | |
compile: { | |
enabled: false // Set compile to false to not run PostCSS *during* compliation | |
}, | |
filter: { | |
enabled: true, // Set filter to true to run PostCSS *after* compilation | |
...require("./postcss.config") | |
} | |
}; |
OlderNewer