Rocky_Mountain_Vending/.pnpm-store/v10/files/7e/5f44903b84ee74ef8ba7d0d7437d334ea827e6abdb9bf28f9acd9ad2011b435cbbb495d66416ecc891b3e84fd7a85780b92bdc75c6655c0c76d5636e33b916
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

11 lines
318 B
Text

// src/workers/assets/rpc-proxy.worker.ts
import { WorkerEntrypoint } from "cloudflare:workers";
var RPCProxyWorker = class extends WorkerEntrypoint {
async fetch(request) {
return this.env.ROUTER_WORKER.fetch(request);
}
};
export {
RPCProxyWorker as default
};
//# sourceMappingURL=rpc-proxy.worker.js.map