Commit 59acae6a authored by Nathan Hunzaker's avatar Nathan Hunzaker Committed by Dan Abramov
Browse files

PostCSS should run on @import statements. (#929)

parent d7ecd928
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -137,7 +137,7 @@ module.exports = { ...@@ -137,7 +137,7 @@ module.exports = {
// in development "style" loader enables hot editing of CSS. // in development "style" loader enables hot editing of CSS.
{ {
test: /\.css$/, test: /\.css$/,
loader: 'style!css!postcss' loader: 'style!css?importLoaders=1!postcss'
}, },
// JSON is not enabled by default in Webpack but both Node and Browserify // JSON is not enabled by default in Webpack but both Node and Browserify
// allow it implicitly so we also enable it. // allow it implicitly so we also enable it.
......
...@@ -150,7 +150,7 @@ module.exports = { ...@@ -150,7 +150,7 @@ module.exports = {
// Webpack 1.x uses Uglify plugin as a signal to minify *all* the assets // Webpack 1.x uses Uglify plugin as a signal to minify *all* the assets
// including CSS. This is confusing and will be removed in Webpack 2: // including CSS. This is confusing and will be removed in Webpack 2:
// https://github.com/webpack/webpack/issues/283 // https://github.com/webpack/webpack/issues/283
loader: ExtractTextPlugin.extract('style', 'css?-autoprefixer!postcss') loader: ExtractTextPlugin.extract('style', 'css?importLoaders=1&-autoprefixer!postcss')
// Note: this won't work without `new ExtractTextPlugin()` in `plugins`. // Note: this won't work without `new ExtractTextPlugin()` in `plugins`.
}, },
// JSON is not enabled by default in Webpack but both Node and Browserify // JSON is not enabled by default in Webpack but both Node and Browserify
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment