--- import DefaultLayout from "../layouts/DefaultLayout.astro"; const { room } = Astro.params; // Passing of environment variables to the client side // gotta love node and it's ecosystem.. const envs_map: Map = new Map(); import { PEER_URL, getSecret } from "astro:env/server"; if (PEER_URL) { envs_map.set("PEER_URL", getSecret("PEER_URL")); } let envs: string = ""; if (envs_map.size > 0) { envs = JSON.stringify(Array.from(envs_map.entries())); } ---

Offline

Warming up the GPU...