diff options
Diffstat (limited to 'vendor/twbs/bootstrap/build/postcss.config.js')
-rw-r--r-- | vendor/twbs/bootstrap/build/postcss.config.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/build/postcss.config.js b/vendor/twbs/bootstrap/build/postcss.config.js new file mode 100644 index 000000000..157291ffd --- /dev/null +++ b/vendor/twbs/bootstrap/build/postcss.config.js @@ -0,0 +1,14 @@ +'use strict' + +module.exports = (ctx) => ({ + map: ctx.file.dirname.includes('examples') ? false : { + inline: false, + annotation: true, + sourcesContent: true + }, + plugins: { + autoprefixer: { + cascade: false + } + } +}) |