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

18 lines
311 B
JavaScript
Raw Permalink Normal View History

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