rsnext/test/integration/css-fixtures/custom-configuration-legacy/postcss.config.js

11 lines
272 B
JavaScript
Raw Normal View History

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',
}),
],
}