From d6200cffef762a653fca31ef8b1162887265d6e9 Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Sun, 29 Oct 2023 06:47:01 +0100 Subject: [PATCH] Remove hashes from build outputs (not reproducible) --- build.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.js b/build.js index 4691a3a..1afe1ef 100644 --- a/build.js +++ b/build.js @@ -17,7 +17,8 @@ const ctx = await esbuild.context({ outdir: 'dist', format: 'esm', target: ['es2020'], - assetNames: 'assets/[name]-[hash]', + assetNames: 'assets/[name]', + chunkNames: 'chunks/[name]', loader: { '.svg': 'file' },