prolab-api/vendor/bower-asset/bootstrap/build/postcss.config.js

20 lines
327 B
JavaScript
Raw Normal View History

2025-10-03 11:00:05 +00:00
'use strict'
2025-09-24 06:24:52 +00:00
const mapConfig = {
inline: false,
annotation: true,
sourcesContent: true
}
2025-10-03 11:00:05 +00:00
module.exports = context => {
2025-09-24 06:24:52 +00:00
return {
map: context.file.dirname.includes('examples') ? false : mapConfig,
plugins: {
autoprefixer: {
cascade: false
},
rtlcss: context.env === 'RTL'
}
}
}