From 0ba28936108856ce892d67a930cec5b0a49ddec6 Mon Sep 17 00:00:00 2001 From: "Dominik K." Date: Tue, 22 Jul 2025 00:43:27 +0200 Subject: [PATCH] fix: hardcode blog url --- apps/web/src/lib/blog-query.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/lib/blog-query.ts b/apps/web/src/lib/blog-query.ts index 5c7c7200..430f58bf 100644 --- a/apps/web/src/lib/blog-query.ts +++ b/apps/web/src/lib/blog-query.ts @@ -7,7 +7,7 @@ import rehypeAutolinkHeadings from "rehype-autolink-headings"; import rehypeSanitize from "rehype-sanitize"; const url = process.env.NEXT_PUBLIC_MARBLE_API_URL ?? "https://api.marblecms.com"; -const key = process.env.MARBLE_WORKSPACE_KEY ?? "cm6ytuq9x0000i803v0isidst"; +const key = process.env.MARBLE_WORKSPACE_KEY ?? "cmd4iw9mm0006l804kwqv0k46"; async function fetchFromMarble(endpoint: string): Promise { try { @@ -52,4 +52,4 @@ export async function processHtmlContent(html: string): Promise { const file = await processor.process(html); return String(file); -} \ No newline at end of file +}