remove leftover logging

This commit is contained in:
Bruno Windels 2021-12-09 12:21:34 +01:00
parent 8e4da396ea
commit 14dffa4ad4

View file

@ -123,7 +123,6 @@ function replaceGlobalHashPlaceholderInChunks(assets, globalHashChunkReplaceMap,
if (!chunk) {
throw new Error(`could not find chunk ${name} to replace global hash placeholder`);
}
console.log(placeholder, globalHash);
chunk.code = chunk.code.replaceAll(placeholder, `"${globalHash}"`);
}
}