rsnext/test/integration/css/fixtures/custom-configuration-arr/.postcssrc.json
Joe Haddad 179e627a36
Redesign PostCSS Configuration Loading (#9704)
* Redesign PostCSS Configuration Loading

* Test array configuration

* Test new configuration handling

* Remove unnecessary async
2019-12-11 11:51:10 -05:00

16 lines
358 B
JSON

{
// Use comments to test JSON5 support
"plugins": [
"pixrem",
["postcss-pseudoelements", true],
// Test a non-standard feature that wouldn't be normally enabled
[
"postcss-short-size",
{
// Add a prefix to test that configuration is passed
"prefix": "xyz"
}
],
["postcss-trolling", false]
]
}