bootstrap/build/postcss.config.js

11 lines
196 B
JavaScript
Raw Normal View History

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