paperclip/server/src/static-index-html.ts

8 lines
265 B
TypeScript

import fs from "node:fs";
import path from "node:path";
import { applyUiBranding } from "./ui-branding.js";
export function readBrandedStaticIndexHtml(uiDist: string): string {
return applyUiBranding(fs.readFileSync(path.join(uiDist, "index.html"), "utf-8"));
}