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