2019-08-02 11:15:48 -04:00
|
|
|
module.exports = ctx => ({
|
|
|
|
//map: ctx.options.map,
|
|
|
|
parser: 'postcss-scss',
|
|
|
|
//syntax: 'postcss-scss',
|
|
|
|
plugins: {
|
|
|
|
'postcss-import': { root: ctx.file.dirname },
|
|
|
|
'postcss-discard-comments': {},
|
|
|
|
'postcss-sassy-mixins': {},
|
|
|
|
'postcss-custom-media': {preserve: false},
|
|
|
|
'postcss-media-minmax': {},
|
|
|
|
'postcss-custom-properties': {preserve: false},
|
2019-08-05 17:46:00 -04:00
|
|
|
'postcss-color-function': {},
|
2019-08-02 11:15:48 -04:00
|
|
|
'postcss-nested': {},
|
|
|
|
'autoprefixer': {},
|
|
|
|
'postcss-csso': {},
|
|
|
|
}
|
|
|
|
})
|