Files
bs-manager/src/main/util.ts
T
2024-11-05 20:32:23 +01:00

17 lines
554 B
TypeScript

/* eslint import/prefer-default-export: off, import/no-mutable-exports: off */
import { pathToFileURL, URL } from "url";
import path from "path";
export function resolveHtmlPath (htmlFileName: string) {
if (process.env.NODE_ENV === "development") {
const port = process.env.PORT || 1212;
const url = new URL(`http://localhost:${port}/${htmlFileName}`);
return url.toString();
}
const filePath = path.resolve(__dirname, "..", "renderer");
return pathToFileURL(filePath).toString().concat("/", htmlFileName);
};