initial commit. phase 1 complete

This commit is contained in:
2026-05-05 20:45:19 +02:00
parent d9c68313a0
commit 89e058ffac
20631 changed files with 3224610 additions and 43 deletions
@@ -0,0 +1,15 @@
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, options){
super(response, {
contentType: RSC_CONTENT_TYPE_HEADER,
waitUntil: options == null ? void 0 : options.waitUntil,
metadata: (options == null ? void 0 : options.metadata) ?? {}
});
}
}
//# sourceMappingURL=flight-render-result.js.map