Skip to content

Commit

Permalink
fix auto-prefixer in archetype app (#744)
Browse files Browse the repository at this point in the history
  • Loading branch information
didi0613 authored and jchip committed Mar 6, 2018
1 parent ce55d1d commit aa39e09
Showing 1 changed file with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,15 +139,12 @@ module.exports = function() {
: [];
},
stylus: {
use: () => {
return !cssModuleSupport
? [
autoprefixer({
browsers: ["last 2 versions", "ie >= 9", "> 5%"]
})
]
: [];
}
use: !cssModuleSupport ? [
autoprefixer({
browsers: ["last 2 versions", "ie >= 9", "> 5%"]
})
]
: []
}
}
})
Expand Down

0 comments on commit aa39e09

Please sign in to comment.