如何使用autoprefixerwebpack 2.x.
以前,它曾经是这样的......
...
module: {
loaders: [
{
test: /\.scss$/,
loader: 'style!css!sass!postcss'
}
]
},
postcss: () => {
return [autoprefixer]
},
...
Run Code Online (Sandbox Code Playgroud)
但是,它不再起作用了.
如何将其重写为webpack@2.xx?