You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two errors in using this config with webpack 2
Breaking change to ExtractTextPlugin
Error: Breaking change: extract now only takes a single argument. Either an options object or the loader(s).
Example: if your old code looked like this:
ExtractTextPlugin.extract('style-loader', 'css-loader')
You would change it to:
ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader' })
Webpack config appears to be inconsistent with usage of post css and throws error: configuration has an unknown property 'postcss'.
There are two errors in using this config with webpack 2
configuration has an unknown property 'postcss'
.See more info here: webpack-contrib/postcss-loader#99
The text was updated successfully, but these errors were encountered: