mirror of
https://github.com/primer/css.git
synced 2024-11-27 09:45:45 +03:00
15 lines
253 B
JavaScript
15 lines
253 B
JavaScript
|
module.exports = {
|
||
|
parser: 'postcss-scss',
|
||
|
map: {
|
||
|
sourcesContent: true,
|
||
|
annotation: true,
|
||
|
},
|
||
|
plugins: {
|
||
|
'postcss-node-sass': {
|
||
|
includePaths: ['node_modules'],
|
||
|
outputStyle: 'compressed'
|
||
|
},
|
||
|
'autoprefixer': {}
|
||
|
}
|
||
|
}
|