2017-03-12 03:32:50 +00:00
|
|
|
module.exports = (ctx) => ({
|
|
|
|
map: ctx.file.dirname.startsWith('docs') ? false : {
|
|
|
|
inline: false,
|
|
|
|
annotation: true,
|
|
|
|
sourcesContent: true
|
|
|
|
},
|
|
|
|
plugins: {
|
2017-09-17 08:39:45 +03:00
|
|
|
autoprefixer: {}
|
2017-03-12 03:32:50 +00:00
|
|
|
}
|
|
|
|
})
|