Remove hashes from build outputs (not reproducible)

This commit is contained in:
Matei Adriel 2023-10-29 06:47:01 +01:00
parent 9089fee899
commit d6200cffef
No known key found for this signature in database

View file

@ -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'
},