og/postcss.config.cjs

9 lines
183 B
JavaScript
Raw Permalink Normal View History

2024-05-22 23:47:15 -04:00
const autoprefixer = require('autoprefixer')
const postcssNesting = require('postcss-nesting')
const config = {
plugins: [postcssNesting(), autoprefixer]
}
module.exports = config