diff --git a/.gitignore b/.gitignore index 482ff1d..5889aa2 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,7 @@ node_modules # Don't include the compiled main.js file in the repo. # They should be uploaded to GitHub releases instead. -dist/* +main.js # Exclude sourcemaps *.map diff --git a/esbuild.config.mjs b/esbuild.config.mjs index fc66070..b31ea0e 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -37,7 +37,7 @@ const context = await esbuild.context({ logLevel: "info", sourcemap: false, treeShaking: true, - outfile: "dist/main.js", + outfile: "main.js", }); if (prod) {