Rocky_Mountain_Vending/.pnpm-store/v10/files/25/eb43562ae49aa7386b65c352373334bc668dae94d1b6f33e532860e7e1f7b8e74574d2034393dbe4280517a9eb3d079c49feeae73fcaa8533bc241e02fc320
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

13 lines
204 B
Text

export class BroadcastChannel {
name = "";
onmessage = (message) => {};
onmessageerror = (message) => {};
close() {}
postMessage(message) {}
ref() {
return this;
}
unref() {
return this;
}
}