diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js
index 65b3936ccb81e95343b83a23c40751f534586166..2a163eb4fa02455af5a2213a682ac9074078ce69 100644
--- a/config/webpack.config.dev.js
+++ b/config/webpack.config.dev.js
@@ -67,7 +67,7 @@ module.exports = {
       },
       {
         test: /\.css$/,
-        include: srcPath,
+        include: [srcPath, nodeModulesPath],
         loader: 'style!css!postcss'
       },
       {
diff --git a/config/webpack.config.prod.js b/config/webpack.config.prod.js
index f372286a279ca81e38bd3af0bd3fa70b693ff681..94f64b087bc633135aaad83a9a69fee62d5286b6 100644
--- a/config/webpack.config.prod.js
+++ b/config/webpack.config.prod.js
@@ -63,7 +63,7 @@ module.exports = {
       },
       {
         test: /\.css$/,
-        include: srcPath,
+        include: [srcPath, nodeModulesPath],
         // Disable autoprefixer in css-loader itself:
         // https://github.com/webpack/css-loader/issues/281
         // We already have it thanks to postcss.