1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/build/postcss.config.js

20 lines
335 B
JavaScript
Raw Normal View History

'use strict'
module.exports = ctx => {
return {
map: ctx.file.dirname.includes('examples') ?
false :
{
inline: false,
annotation: true,
sourcesContent: true
},
plugins: {
autoprefixer: {
cascade: false
2020-11-19 08:55:32 -05:00
},
rtlcss: ctx.env === 'RTL' ? {} : false
2017-12-16 07:00:38 -05:00
}
2017-03-11 22:32:50 -05:00
}
}