From 8f6fe002a36a0549133f3a8865036d1fc8cd3c6e Mon Sep 17 00:00:00 2001 From: Andrew Stein Date: Mon, 1 Jul 2019 13:03:51 -0400 Subject: [PATCH] Fixed webpack config error in webpack example --- examples/webpack/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/webpack/webpack.config.js b/examples/webpack/webpack.config.js index 3d66ad995e..67de249bf7 100644 --- a/examples/webpack/webpack.config.js +++ b/examples/webpack/webpack.config.js @@ -32,7 +32,7 @@ module.exports = { rules: [ { test: /\.less$/, - exclude: /packages/, + exclude: [/packages/, /node_modules/], use: [{loader: "style-loader"}, {loader: "css-loader"}, {loader: "less-loader"}] } ]