mirror of https://github.com/twbs/bootstrap.git
21 lines
368 B
JavaScript
21 lines
368 B
JavaScript
'use strict'
|
|
|
|
const mapConfig = {
|
|
inline: false,
|
|
annotation: true,
|
|
sourcesContent: true
|
|
}
|
|
|
|
module.exports = context => {
|
|
return {
|
|
map: context.file.dirname.includes('examples') ? false : mapConfig,
|
|
plugins: {
|
|
"postcss-drop-empty-css-vars": {},
|
|
autoprefixer: {
|
|
cascade: false
|
|
},
|
|
rtlcss: context.env === 'RTL'
|
|
}
|
|
}
|
|
}
|