1module.exports = { 2 plugins: [ 3 require('postcss-import'), 4 // We want to make use of nesting following the CSS Nesting spec, and not the 5 // SASS style nesting. 6 // 7 // @see https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting 8 require('tailwindcss/nesting')(require('postcss-nesting')), 9 require('tailwindcss'), 10 require('autoprefixer'), 11 require('postcss-preset-env')({ 12 features: { 13 'nesting-rules': false, 14 }, 15 }), 16 ], 17}; 18 19