diff options
| author | XhmikosR <[email protected]> | 2017-10-09 10:48:35 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2017-10-09 11:20:05 +0300 |
| commit | d687ba56840c8ccd00b57271ef67da5a682abdd0 (patch) | |
| tree | f5247093b8915aad636e2b8c542c91093453bad5 | |
| parent | a8fb64f3e3b7c9a8763ea89aea85082b1a073ef6 (diff) | |
| download | bootstrap-d687ba56840c8ccd00b57271ef67da5a682abdd0.tar.xz bootstrap-d687ba56840c8ccd00b57271ef67da5a682abdd0.zip | |
Remove unused code from postcss.config.js.
We actually want to generate a sourcemap for docs.min.css.
| -rw-r--r-- | build/postcss.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/postcss.config.js b/build/postcss.config.js index 1f2be8b7c..425228eaa 100644 --- a/build/postcss.config.js +++ b/build/postcss.config.js @@ -1,7 +1,7 @@ 'use strict' module.exports = (ctx) => ({ - map: ctx.file.dirname.startsWith('docs') || ctx.file.dirname.includes('examples') ? false : { + map: ctx.file.dirname.includes('examples') ? false : { inline: false, annotation: true, sourcesContent: true |
