Rocky_Mountain_Vending/.pnpm-store/v10/files/56/52ae1c15e92f82996873e1e754ab9e57bc91825b3e7badb5058fae7a4e920d455e4482667e88f9d39453701f205a823614fd829a157f843dfd594a56290d10
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

14 lines
No EOL
509 B
Text

import { RSC_CONTENT_TYPE_HEADER } from '../../client/components/app-router-headers';
import RenderResult from '../render-result';
/**
* Flight Response is always set to RSC_CONTENT_TYPE_HEADER to ensure it does not get interpreted as HTML.
*/ export class FlightRenderResult extends RenderResult {
constructor(response, metadata = {}){
super(response, {
contentType: RSC_CONTENT_TYPE_HEADER,
metadata
});
}
}
//# sourceMappingURL=flight-render-result.js.map