2022-05-19 20:39:15 +08:00

25 lines
637 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import path from "path";
import isDev from "electron-is-dev";
import url from "url";
import { app } from "electron";
const APP_PATH = app.getAppPath();
// 对于一些 shell 去执行的文件asar 目录下无法使用。配合 extraResources
const EXECUTABLE_PATH = path.join(
APP_PATH.indexOf("app.asar") > -1
? APP_PATH.substring(0, APP_PATH.indexOf("app.asar"))
: APP_PATH,
"public"
);
export default {
APP_START_URL: isDev
? "http://localhost:3000"
: url.format({
pathname: path.join(APP_PATH, "./build/index.html"),
protocol: "file:",
slashes: true,
}),
IS_DEV: isDev,
};