Rocky_Mountain_Vending/.pnpm-store/v10/files/cb/f7cbc148ab357bd30c28f0ace86a3bfe2425c775b606866179bbe9920578411ca62df1a7e38aeeea82e3b31e09d12cae5801ed6da31c9cb112d50d6145c7e5
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

19 lines
708 B
Text

// src/workers/cache/constants.ts
var CacheHeaders = {
NAMESPACE: "cf-cache-namespace",
STATUS: "cf-cache-status"
};
// src/workers/cache/cache-entry-noop.worker.ts
var cache_entry_noop_worker_default = {
async fetch(request) {
return request.method === "GET" ? new Response(null, {
status: 504,
headers: { [CacheHeaders.STATUS]: "MISS" }
}) : request.method === "PUT" ? (await request.body?.pipeTo(new WritableStream()), new Response(null, { status: 204 })) : request.method === "PURGE" ? new Response(null, { status: 404 }) : new Response(null, { status: 405 });
}
};
export {
cache_entry_noop_worker_default as default
};
//# sourceMappingURL=cache-entry-noop.worker.js.map