An entry for the streamplace vod showcase
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

More fixes

+4 -3
+2 -1
apps/backend/api/src/index.ts
··· 38 38 "*.mainasara.dev", // AppView (at-run hosted) 39 39 "fonts.gstatic.com", // Google Fonts for OG images 40 40 "cdn.bsky.app", // Bluesky CDN for avatars 41 + "unpkg.com", // resvg WASM for OG images 41 42 ], 42 43 write: ["/tmp/vod-cache/"], 43 44 read: ["/tmp/vod-cache/"], ··· 862 863 if (!wasmInitialized) { 863 864 try { 864 865 // Fetch WASM from CDN 865 - const wasmRes = await fetch("https://unpkg.com/@aspect-build/rules_esbuild@1.7.0/tree/esbuild/index.wasm") 866 + const wasmRes = await fetch("https://unpkg.com/@resvg/resvg-wasm@2.6.2/index_bg.wasm") 866 867 const wasmModule = await WebAssembly.compile(await wasmRes.arrayBuffer()) 867 868 await resvgMod.initWasm(wasmModule) 868 869 wasmInitialized = true
+2 -2
packages/at-run/runner/Dockerfile
··· 14 14 COPY packages/at-run/runtime/package.json ./packages/at-run/runtime/ 15 15 COPY packages/at-run/runner/package.json ./packages/at-run/runner/ 16 16 COPY packages/at-run/cli/package.json ./packages/at-run/cli/ 17 - COPY apps/vod/package.json ./apps/vod/ 18 - COPY apps/web/package.json ./apps/web/ 17 + COPY apps/backend/api/package.json ./apps/backend/api/ 18 + COPY apps/frontend/package.json ./apps/frontend/ 19 19 20 20 # Install dependencies (creates workspace symlinks) 21 21 RUN bun install