config webpack

This commit is contained in:
v1ll4n
2024-03-20 17:59:09 +08:00
parent 74dc812f8f
commit 1a790a964b
24 changed files with 2660 additions and 274 deletions
@@ -0,0 +1,9 @@
'use strict';
const { createHash } = require('crypto');
module.exports = env => {
const hash = createHash('md5');
hash.update(JSON.stringify(env));
return hash.digest('hex');
};