diff --git a/templates/javascript/webpack.config.js b/templates/javascript/webpack.config.js index 4524ab7..826d3d5 100644 --- a/templates/javascript/webpack.config.js +++ b/templates/javascript/webpack.config.js @@ -16,5 +16,6 @@ module.exports = { path: path.join(__dirname, "build"), library: "Suborbital", chunkFormat: "array-push", + hashFunction: 'xxhash64' }, }; diff --git a/templates/typescript/webpack.config.js b/templates/typescript/webpack.config.js index e66f851..1e006b8 100644 --- a/templates/typescript/webpack.config.js +++ b/templates/typescript/webpack.config.js @@ -25,5 +25,6 @@ module.exports = { path: path.join(__dirname, "build"), library: "Suborbital", chunkFormat: "array-push", + hashFunction: 'xxhash64' }, };