Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/c0a3ce6810d04bd344ea28132695ff0cad2f1f15076ff23d7e26ba9ad00f82cc0263c5cd71d1906bcad370a168fba78f15fed9d9e22ba7fdd5e5912bcd9fb4
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

12 lines
No EOL
365 B
Text

import { FLIGHT_HEADERS } from '../../client/components/app-router-headers';
/**
* Removes the flight headers from the request.
*
* @param req the request to strip the headers from
*/ export function stripFlightHeaders(headers) {
for (const header of FLIGHT_HEADERS){
delete headers[header];
}
}
//# sourceMappingURL=strip-flight-headers.js.map