loops-web/postcss.config.mjs
hazycora 086667a44b
Some checks failed
Deploy to VPS / build_site (push) Failing after 34s
update postcss config to mjs
2024-11-24 04:44:29 -06:00

8 lines
171 B
JavaScript

import autoprefixer from 'autoprefixer'
import postcssNesting from 'postcss-nesting'
const config = {
plugins: [postcssNesting(), autoprefixer]
}
export default config