0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/build/postcss.config.js

17 lines
252 B
JavaScript
Raw Normal View History

'use strict'
2019-02-26 13:20:34 +02:00
module.exports = ctx => ({
map: ctx.file.dirname.includes('examples') ?
false :
{
inline: false,
annotation: true,
sourcesContent: true
},
2017-03-12 03:32:50 +00:00
plugins: {
2017-12-16 14:00:38 +02:00
autoprefixer: {
cascade: false
}
2017-03-12 03:32:50 +00:00
}
})