FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "config.ts"
export const TENANT_ID = Deno.env.get("FASTCOMMENTS_TENANT_ID") ?? "demo"; // Only accounts created on eu.fastcomments.com set this, to "eu". export const REGION = Deno.env.get("FASTCOMMENTS_REGION") ?? ""; export const CDN = REGION === "eu" ? "https://cdn-eu.fastcomments.com" : "https://cdn.fastcomments.com";
Result