diff --git a/README.md b/README.md index de3050ba..f331fc7a 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ module.exports = ({ file, options, env }) => ({ plugins: { 'postcss-import': { root: file.dirname }, 'postcss-cssnext': options.cssnext ? options.cssnext : false, - 'autoprefixer': env == 'production' ? options.autoprefixer : false, + 'autoprefixer': env === 'production' ? options.autoprefixer : false, 'cssnano': env === 'production' ? options.cssnano : false } })