// Run with: bun scripts/share-card-preview.ts // Optional mobile iframe: SHARE_PREVIEW=1 bun scripts/dashboard-preview.ts import page from "./share-card-preview.html"; const server = Bun.serve({ hostname: "127.0.0.1", port: 3108, routes: { "/*": page }, development: true }); console.log(`Sharing visual fixtures: ${server.url}`);