mirror of
https://github.com/primer/css.git
synced 2024-11-23 11:27:26 +03:00
17 lines
304 B
JavaScript
17 lines
304 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
parser: 'postcss-scss',
|
|
map: {
|
|
sourcesContent: true,
|
|
annotation: true
|
|
},
|
|
plugins: {
|
|
'postcss-node-sass': {
|
|
includePaths: [path.join(__dirname, 'node_modules')],
|
|
outputStyle: 'compressed'
|
|
},
|
|
'autoprefixer': {}
|
|
}
|
|
}
|