/** * WHAT IS THIS FILE? * * SSR entry point, in all cases the application is rendered outside the browser, this * entry point will be the common one. * * - Server (express, cloudflare...) * - npm run start * - npm run preview * - npm run build * */ import { renderToStream, type RenderToStreamOptions, } from "@builder.io/qwik/server"; import { extractBase, setSsrLocaleGetter } from "compiled-i18n/qwik"; import Root from "./root"; setSsrLocaleGetter(); export default function (opts: RenderToStreamOptions) { return renderToStream(, { ...opts, base: extractBase, // Use container attributes to set attributes on the html tag. containerAttributes: { lang: opts.serverData!.locale, ...opts.containerAttributes, }, serverData: { ...opts.serverData, }, }); }