diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js index f455d89..c177c10 100644 --- a/config/webpack.config.dev.js +++ b/config/webpack.config.dev.js @@ -2,7 +2,7 @@ const merge = require("webpack-merge"); const path = require("path"); const FriendlyErrorsWebpackPlugin = require("friendly-errors-webpack-plugin"); -const HardSourceWebpackPlugin = require("hard-source-webpack-plugin"); +//const HardSourceWebpackPlugin = require("hard-source-webpack-plugin"); const common = require("./webpack.common.js"); @@ -26,6 +26,8 @@ module.exports = merge(common, { ], }, }), - new HardSourceWebpackPlugin(), + //new HardSourceWebpackPlugin(), + // No hardsource plugin because of errors with last Webpack version : + // https://github.com/webpack/webpack/issues/8052 ], });