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

19 lines
374 B
JavaScript
Raw Normal View History

const mapConfig = {
inline: false,
annotation: true,
sourcesContent: true
}
2021-08-26 19:12:28 +03:00
// eslint-disable-next-line import/no-anonymous-default-export
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
}
}