I am using postcss-cssnext and in my webpack.config I removed autoprefixer
postcss: [autoprefixer({ browsers: ['last 2 versions'] }) ],
and included cssnext. I understand that cssnext already includes autoprefixer so we don't need both included. I am just wondering how I pass in the browserslist to cssnext? This is what I currently have:
postcss: [cssnext()],