refactor: prevent caching html files

This commit is contained in:
Carlos Valente
2024-11-29 14:55:08 +01:00
committed by Carlos Valente
parent 35f4472daa
commit f561e52bb5
9 changed files with 240 additions and 280 deletions
+10
View File
@@ -0,0 +1,10 @@
import * as esbuild from 'esbuild';
import { esbuildCommon } from './esbuildCommon.js';
await esbuild.build({
...esbuildCommon,
entryPoints: ['src/app.ts'],
minify: false,
dropLabels: [],
outfile: 'dist/index.cjs',
});