/* * WHAT IS THIS FILE? * * It's the entry point for Firbease when building for production. * * Learn more about the Firebase integration here: * - https://qwik.dev/docs/deployments/firebase/ * */ import { createQwikCity, type PlatformFirebase, } from "@builder.io/qwik-city/middleware/firebase"; import qwikCityPlan from "@qwik-city-plan"; import render from "./entry.ssr"; declare global { type QwikCityPlatform = PlatformFirebase; } export default createQwikCity({ render, qwikCityPlan });