mirror of
https://github.com/Lissy93/personal-security-checklist.git
synced 2024-10-01 01:35:37 -04:00
23 lines
597 B
TypeScript
23 lines
597 B
TypeScript
|
/*
|
||
|
* WHAT IS THIS FILE?
|
||
|
*
|
||
|
* It's the entry point for Vercel Edge when building for production.
|
||
|
*
|
||
|
* Learn more about the Vercel Edge integration here:
|
||
|
* - https://qwik.builder.io/docs/deployments/vercel-edge/
|
||
|
*
|
||
|
*/
|
||
|
import {
|
||
|
createQwikCity,
|
||
|
type PlatformVercel,
|
||
|
} from "@builder.io/qwik-city/middleware/vercel-edge";
|
||
|
import qwikCityPlan from "@qwik-city-plan";
|
||
|
import { manifest } from "@qwik-client-manifest";
|
||
|
import render from "./entry.ssr";
|
||
|
|
||
|
declare global {
|
||
|
interface QwikCityPlatform extends PlatformVercel {}
|
||
|
}
|
||
|
|
||
|
export default createQwikCity({ render, qwikCityPlan, manifest });
|