1
1
mirror of https://github.com/primer/css.git synced 2024-11-23 11:27:26 +03:00
css/postcss.config.js
2020-08-10 10:41:03 -07:00

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': {}
}
}