surat/vendor/bower-asset/bootstrap/build/postcss.config.mjs

18 lines
311 B
JavaScript
Raw Normal View History

2024-12-25 03:04:59 +00:00
const mapConfig = {
inline: false,
annotation: true,
sourcesContent: true
}
export default context => {
return {
map: context.file.dirname.includes('examples') ? false : mapConfig,
plugins: {
autoprefixer: {
cascade: false
},
rtlcss: context.env === 'RTL'
}
}
}