Live video on the AT Protocol

we can try this?

+18 -1
+4 -1
js/docs/astro.config.mjs
··· 1 1 // @ts-check 2 2 import starlight from "@astrojs/starlight"; 3 - import { defineConfig } from "astro/config"; 3 + import { defineConfig, passthroughImageService } from "astro/config"; 4 4 import starlightOpenAPI, { openAPISidebarGroups } from "starlight-openapi"; 5 5 6 6 // https://astro.build/config 7 7 export default defineConfig({ 8 8 base: "/docs", 9 + image: { 10 + service: passthroughImageService(), 11 + }, 9 12 integrations: [ 10 13 starlight({ 11 14 title: "Streamplace Docs",
+14
wrangler.toml
··· 1 + name = "streamplace-docs" 2 + compatibility_date = "2025-04-01" 3 + 4 + [assets] 5 + directory = "./js/docs/dist/" 6 + not_found_handling = "404-page" 7 + 8 + [[redirects]] 9 + from = "/" 10 + to = "/docs" 11 + status = 301 12 + 13 + [build] 14 + command = "pnpm install --filter=streamplace-docs... && cd js/docs && astro build --outDir ./dist/docs"