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

17 lines
304 B
JavaScript
Raw Normal View History

2020-08-10 20:41:03 +03:00
const path = require('path')
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': {
2020-08-10 20:41:03 +03:00
includePaths: [path.join(__dirname, 'node_modules')],
2019-02-12 06:42:49 +03:00
outputStyle: 'compressed'
},
'autoprefixer': {}
}
}