Rocky_Mountain_Vending/.pnpm-store/v10/files/c7/c370e89761497f43a9fe7d5827c1b1c97cc1f74d30ec746bf69b9022f3d31900e5f9eeecaff87538d5e6278857c234e899e19cc2115a9dbc5a7bb9f771423c
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

3 lines
277 B
Text

import type { Duplex } from 'stream';
import type { IncomingMessage, ServerResponse } from 'node:http';
export declare const blockCrossSite: (req: IncomingMessage, res: ServerResponse | Duplex, allowedDevOrigins: string[] | undefined, hostname: string | undefined) => boolean;