react-scripts eject

This commit is contained in:
2026-03-04 21:53:00 -06:00
parent 9b1efb7158
commit 5c8322af85
18 changed files with 2004 additions and 102 deletions

View File

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