rsnext/test/integration/css-fixtures/custom-configuration-legacy/postcss.config.js
2019-12-30 17:53:35 -06:00

10 lines
272 B
JavaScript

module.exports = {
// Use comments to test JSON5 support
plugins: [
// Test a non-standard feature that wouldn't be normally enabled
require('postcss-short-size')({
// Add a prefix to test that configuration is passed
prefix: 'xyz',
}),
],
}