Files
bs-manager/src/main/util.ts
T

16 lines
541 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", htmlFileName);
return pathToFileURL(filePath).toString();
};