port 1553

This commit is contained in:
2026-02-04 16:26:51 +00:00
parent c8afac1d4d
commit 6525dbc495

View File

@@ -20,13 +20,11 @@ const escapeHtml = (value: string) =>
const escapeAttr = (value: string) => escapeHtml(value);
const normalizeFamily = (value: string) => value.replace(/^['"]|['"]$/g, "").trim();
const normalizeFamily = (value: string) =>
value.replace(/^['"]|['"]$/g, "").trim();
const slugify = (value: string) =>
value
.toLowerCase()
.replace(/\s+/g, " ")
.trim();
value.toLowerCase().replace(/\s+/g, " ").trim();
const parseFontFamilies = (css: string) => {
const families = new Set<string>();
@@ -124,7 +122,7 @@ const cssRoutes = async () => {
await cssRoutes();
const port = Number(Bun.env.PORT ?? 3000);
const port = Number(Bun.env.PORT ?? 1553);
export default {
fetch: app.fetch,