Skip to content Skip to sidebar Skip to footer

Webpack-cli Error: Compiling Ruleset Failed

I'm trying to rewrite a poorly configured package.json, removed node_modules, removed ~/.cache, started from scratch package.json { 'name': 'billing', 'version': '0.1.0', 'pr

Solution 1:

I had the same issue today and I fixed by updating the url-loader module to the version 4.1.1, and by changing the following line:

old:

{ test: /\.(png|woff|woff2|eot|ttf|svg)$/, use: ['url-loader?limit=100000'] }

new:

{ test:/\.(png|woff|woff2|eot|}ttf|svg)$/,use: [{ loader:'url-loader, options: { limit: 100000 } }]

Post a Comment for "Webpack-cli Error: Compiling Ruleset Failed"