twbs--bootstrap/build/postcss.config.js

20 lines
327 B
JavaScript
Raw Normal View History

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