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>
11 lines
318 B
Text
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
|