Skip to content

Commit

Permalink
Merge pull request #640 from finos/webpack-example-fix
Browse files Browse the repository at this point in the history
Fixed webpack config error in webpack example
  • Loading branch information
texodus authored Jul 1, 2019
2 parents 2bb94b3 + 8f6fe00 commit 1e456d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"}]
}
]
Expand Down

0 comments on commit 1e456d0

Please sign in to comment.