Skip to content

Commit

Permalink
postcss.config.js: remove arrow return (#32235)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored Nov 23, 2020
1 parent 3e823e0 commit ee2bcde
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions build/postcss.config.js
Original file line number Diff line number Diff line change
@@ -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
}
}
}
})
}

0 comments on commit ee2bcde

Please sign in to comment.