Skip to content

Commit fcb4bdb

Browse files
fix: 製品版特有のバグを修正
1 parent bca09f6 commit fcb4bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-electron/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if (process.platform === "win32") {
5050
let iconPath: string;
5151
const publicDir = isDevelopment
5252
? path.join(import.meta.dirname, "../public")
53-
: __dirname;
53+
: import.meta.dirname;
5454
const url = isDevelopment ? "http://localhost:5173#" : "app://./index.html#";
5555

5656
const log = (namespace: string, text: string) => {

0 commit comments

Comments
 (0)