Skip to content

Commit

Permalink
Update desktop/main-app/scripts/esbuild/paths.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Black-Hole <158blackhole@gmail.com>
  • Loading branch information
hyrious and BlackHole1 authored Sep 13, 2022
1 parent da9a5dd commit 80346c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions desktop/main-app/scripts/esbuild/paths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from "path";
const resolvePath = (...relativePath: string[]): string =>
path.resolve(__dirname, "..", "..", ...relativePath);

export const dist = resolvePath("dist/index.js");
export const preloadDist = resolvePath("dist/preload.js");
export const dist = resolvePath("dist", "index.js");
export const preloadDist = resolvePath("dist", "preload.js");
export const entryFile = resolvePath("src", "index.ts");
export const preloadPath = resolvePath("src", "preload.ts");

0 comments on commit 80346c8

Please sign in to comment.