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