mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
25 lines
646 B
TypeScript
25 lines
646 B
TypeScript
/*
|
|
* WHAT IS THIS FILE?
|
|
*
|
|
* It's the entry point for Cloudflare Pages when building for production.
|
|
*
|
|
* Learn more about the Cloudflare Pages integration here:
|
|
* - https://qwik.dev/docs/deployments/cloudflare-pages/
|
|
*
|
|
*/
|
|
import {
|
|
createQwikCity,
|
|
type PlatformCloudflarePages,
|
|
} from "@builder.io/qwik-city/middleware/cloudflare-pages";
|
|
import qwikCityPlan from "@qwik-city-plan";
|
|
import { manifest } from "@qwik-client-manifest";
|
|
import render from "./entry.ssr";
|
|
|
|
declare global {
|
|
interface QwikCityPlatform extends PlatformCloudflarePages {}
|
|
}
|
|
|
|
const fetch = createQwikCity({ render, qwikCityPlan, manifest });
|
|
|
|
export { fetch };
|