blob: b34a0ce46741b76839132c02ea767c7113a3f8ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'use strict'
module.exports = (ctx) => ({
map: ctx.file.dirname.startsWith('docs') ? false : {
inline: false,
annotation: true,
sourcesContent: true
},
plugins: {
autoprefixer: {}
}
})
|