diff options
| author | XhmikosR <[email protected]> | 2020-11-23 16:11:16 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-23 16:11:16 +0200 |
| commit | ee2bcdec3d201b5826fdaaf72a950a08581d3df4 (patch) | |
| tree | d6e382e9eb75303b7fcbee8a47e85d0000035875 /build | |
| parent | 3e823e0b752b51b277a3a2d563c6b987f7496cf9 (diff) | |
| download | bootstrap-ee2bcdec3d201b5826fdaaf72a950a08581d3df4.tar.xz bootstrap-ee2bcdec3d201b5826fdaaf72a950a08581d3df4.zip | |
postcss.config.js: remove arrow return (#32235)
Diffstat (limited to 'build')
| -rw-r--r-- | build/postcss.config.js | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/build/postcss.config.js b/build/postcss.config.js index 56b7d94cc..ef416258f 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 + } } } -}) +} |
