From d687ba56840c8ccd00b57271ef67da5a682abdd0 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 9 Oct 2017 10:48:35 +0300 Subject: [PATCH] Remove unused code from postcss.config.js. We actually want to generate a sourcemap for docs.min.css. --- build/postcss.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/postcss.config.js b/build/postcss.config.js index 1f2be8b7c1..425228eaac 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 -- 2.47.2