rsnext/test/integration/css/fixtures/custom-configuration/.postcssrc.json
Joe Haddad 4656f52d15
CSS Support Customization (#9502)
* CSS Support Customization

* Sort imports

* Correct PostCSS plugin loading

* Add css customization test

* Test "bad" css configuration

* Add load config test

* adjust spacing

* adjust spacing 2x

* Only allow config through JSON

* Support excluding false plugins

* Test tailwind css behavior

* Test plugin exclusion

* Fix unit test

* Fix config file

* Remove more variants

* Update test cases
2019-11-25 16:52:29 -05:00

11 lines
278 B
JSON

{
// Use comments to test JSON5 support
"plugins": {
// 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
}
}