Files
e2b-dev--e2b/postcss.config.js
T
Tomas Valenta 12a6130202 Setup project
2023-03-04 15:56:04 +00:00

14 lines
237 B
JavaScript

module.exports = {
plugins: {
'postcss-import': {},
'tailwindcss/nesting': {},
tailwindcss: {},
autoprefixer: {},
...(process.env.NODE_ENV === 'production'
? {
cssnano: {},
}
: {}),
},
}