webpack: Drop unused import

See https://github.com/cockpit-project/cockpit-podman/issues/855
This commit is contained in:
Martin Pitt 2021-12-14 08:47:04 +01:00 committed by Martin Pitt
parent aa8308c380
commit db6397050a

View file

@ -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';