I hate this

This commit is contained in:
Dominik K. 2025-07-22 00:42:56 +02:00 committed by GitHub
parent 6399f1c902
commit 325e7459ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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<T>(endpoint: string): Promise<T> {
try {
@ -52,4 +52,4 @@ export async function processHtmlContent(html: string): Promise<string> {
const file = await processor.process(html);
return String(file);
}
}