1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 13:51:52 +03:00
css/postcss.config.js

15 lines
252 B
JavaScript
Raw Normal View History

2019-02-12 06:42:49 +03:00
module.exports = {
parser: 'postcss-scss',
map: {
sourcesContent: true,
2019-02-12 09:32:26 +03:00
annotation: true
2019-02-12 06:42:49 +03:00
},
plugins: {
'postcss-node-sass': {
includePaths: ['node_modules'],
outputStyle: 'compressed'
},
'autoprefixer': {}
}
}