From ee2bcdec3d201b5826fdaaf72a950a08581d3df4 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 23 Nov 2020 16:11:16 +0200 Subject: postcss.config.js: remove arrow return (#32235) --- build/postcss.config.js | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'build') diff --git a/build/postcss.config.js b/build/postcss.config.js index 56b7d94cc1..ef416258f7 100644 --- a/build/postcss.config.js +++ b/build/postcss.config.js @@ -1,16 +1,18 @@ 'use strict' -module.exports = ctx => ({ - map: ctx.file.dirname.includes('examples') ? - false : - { - inline: false, - annotation: true, - sourcesContent: true - }, - plugins: { - autoprefixer: { - cascade: false +module.exports = ctx => { + return { + map: ctx.file.dirname.includes('examples') ? + false : + { + inline: false, + annotation: true, + sourcesContent: true + }, + plugins: { + autoprefixer: { + cascade: false + } } } -}) +} -- cgit v1.2.3