Fix esbuild path

This commit is contained in:
NellowTCS 2026-01-25 22:13:10 -07:00
parent e7440d6d76
commit 2a2db58602

View file

@ -37,7 +37,7 @@ const context = await esbuild.context({
logLevel: "info",
sourcemap: prod ? false : "inline",
treeShaking: true,
outfile: "../main.js",
outfile: "./dist/main.js",
minify: prod,
});