From db6397050a92d2295c8c4d3a95c5e23c8b372011 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Tue, 14 Dec 2021 08:47:04 +0100 Subject: [PATCH] webpack: Drop unused import See https://github.com/cockpit-project/cockpit-podman/issues/855 --- webpack.config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 600e5ee..667a58c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -13,8 +13,6 @@ const crypto = require("crypto"); const crypto_orig_createHash = crypto.createHash; crypto.createHash = algorithm => crypto_orig_createHash(algorithm == "md4" ? "sha256" : algorithm); -const webpack = require("webpack"); - /* A standard nodejs and webpack pattern */ const production = process.env.NODE_ENV === 'production';