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

17 lines
318 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
},
2021-04-08 20:13:39 +03:00
plugins: [
require('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'
2021-04-08 20:13:39 +03:00
}),
require('autoprefixer')
]
2019-02-12 06:42:49 +03:00
}