0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-12 00:08:59 +01:00
Bootstrap/build/postcss.config.mjs

18 lines
311 B
JavaScript
Raw Normal View History

const mapConfig = {
inline: false,
annotation: true,
sourcesContent: true
}
2023-08-06 06:37:24 +02:00
export default context => {
return {
map: context.file.dirname.includes('examples') ? false : mapConfig,
plugins: {
autoprefixer: {
cascade: false
2020-11-19 14:55:32 +01:00
},
rtlcss: context.env === 'RTL'
2017-12-16 13:00:38 +01:00
}
2017-03-12 04:32:50 +01:00
}
}