Skip to content

Commit

Permalink
Disable autoprefixer Postcss plugin in cssnano as it's already in pos…
Browse files Browse the repository at this point in the history
…t-css-next
  • Loading branch information
KyleAMathews committed Apr 9, 2016
1 parent 051c231 commit dd2e960
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/utils/webpack.config.js
Expand Up @@ -300,7 +300,9 @@ module.exports = (program, directory, stage, webpackPort = 1500, routes = []) =>
require('postcss-cssnext')({
browsers: 'last 2 versions',
}),
require('cssnano'),
require('cssnano')({
autoprefixer: false,
}),
],
})
return config
Expand Down

0 comments on commit dd2e960

Please sign in to comment.