8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
import autoprefixer from 'autoprefixer'
|
|
import postcssNesting from 'postcss-nesting'
|
|
|
|
const config = {
|
|
plugins: [postcssNesting(), autoprefixer]
|
|
}
|
|
|
|
export default config
|