14 lines
214 B
JavaScript
14 lines
214 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
import prefix from 'autoprefixer'
|
|
import nest from 'postcss-nested'
|
|
|
|
|
|
|
|
const config = {
|
|
plugins: [
|
|
prefix,
|
|
nest
|
|
]
|
|
}
|
|
|
|
export default config |