Skip to content

Commit

Permalink
fix(ci): build
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed May 25, 2024
1 parent dcfcf95 commit 4bc8258
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/esbuild-build.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import esbuild from "esbuild";
const typescriptEntries = ["static/main.ts"];
// const cssEntries = ["static/style.css"];
const typescriptEntries = ["build/index.ts"];
// const cssEntries = ["build/style.css"];
const entries = [
...typescriptEntries,
// ...cssEntries
Expand All @@ -19,7 +19,7 @@ export const esBuildContext: esbuild.BuildOptions = {
".ttf": "dataurl",
".svg": "dataurl",
},
outdir: "static/dist",
outdir: "build/dist",
};

esbuild
Expand Down

0 comments on commit 4bc8258

Please sign in to comment.