chore(postcss): add PostCSS nesting plugin

This commit is contained in:
Stefan Imhoff
2023-04-05 15:30:22 +02:00
parent b63299944c
commit 9d22226498
3 changed files with 32 additions and 13 deletions

View File

@@ -1,6 +1,9 @@
module.exports = {
plugins: [
require('autoprefixer'),
// require('cssnano')
],
plugins: {
'postcss-import': {},
'tailwindcss/nesting': 'postcss-nesting',
tailwindcss: {},
autoprefixer: {},
// cssnano: {},
},
};