mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
19 lines
327 B
JavaScript
19 lines
327 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: {
|
|
autoprefixer: {
|
|
cascade: false
|
|
},
|
|
rtlcss: context.env === 'RTL'
|
|
}
|
|
}
|
|
}
|