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

19 lines
374 B
JavaScript

const mapConfig = {
inline: false,
annotation: true,
sourcesContent: true
}
// eslint-disable-next-line import/no-anonymous-default-export
export default context => {
return {
map: context.file.dirname.includes('examples') ? false : mapConfig,
plugins: {
autoprefixer: {
cascade: false
},
rtlcss: context.env === 'RTL'
}
}
}