0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/build/postcss.config.js

13 lines
228 B
JavaScript
Raw Permalink Normal View History

'use strict'
2017-03-12 03:32:50 +00:00
module.exports = (ctx) => ({
map: ctx.file.dirname.includes('examples') ? false : {
2017-03-12 03:32:50 +00:00
inline: false,
annotation: true,
sourcesContent: true
},
plugins: {
autoprefixer: { cascade: false }
2017-03-12 03:32:50 +00:00
}
})