1
0
Fork 0
bootstrap-html/build/postcss.config.mjs
Daniel Baumann c39481092b
Adding upstream version 5.3.3+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-17 07:08:47 +01:00

17 lines
311 B
JavaScript

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'
}
}
}