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
370 B
Text
11 lines
370 B
Text
// src/workers/core/strip-cf-connecting-ip.worker.ts
|
|
var strip_cf_connecting_ip_worker_default = {
|
|
fetch(request) {
|
|
let headers = new Headers(request.headers);
|
|
return headers.delete("CF-Connecting-IP"), fetch(request, { headers });
|
|
}
|
|
};
|
|
export {
|
|
strip_cf_connecting_ip_worker_default as default
|
|
};
|
|
//# sourceMappingURL=strip-cf-connecting-ip.worker.js.map
|