11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
// postcss.config.js
|
|
module.exports = {
|
|
plugins: {
|
|
'postcss-import': {},
|
|
'tailwindcss/nesting': 'postcss-nesting',
|
|
tailwindcss: {},
|
|
'postcss-preset-env': {
|
|
features: { 'nesting-rules': false },
|
|
},
|
|
}
|
|
} |