Skip to content

Commit

Permalink
fix autoprefixer config
Browse files Browse the repository at this point in the history
  • Loading branch information
jdan committed Feb 28, 2017
1 parent 6f277b7 commit e380b6e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions webpack.config.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,13 @@ module.exports = {
{ test: /\.handlebars$/, loader: "handlebars", },
{
test: /\.less$/,
loader: "style!css!postcss?{browsers:['> 1%']}!less",
loader: "style!css!postcss!less",
},
],
},
plugins,
postcss: [veryimportant, autoprefixer],
postcss: [
veryimportant,
autoprefixer({browsers: ["> 1%"]}),
],
};

0 comments on commit e380b6e

Please sign in to comment.