·
1 commit
to main
since this release
Patch Changes
-
2af2e4a: feat: support global config for renderOpts
You can now pass the
renderOptsoption to theqwikintegration to set global render options for all Qwik components.For example, let's say we wanted to change the base URL for all Qwik build assets on every component used in an Astro file.
import { defineConfig } from "astro/config"; import qwik from "@qwikdev/astro"; export default defineConfig({ integrations: [ qwik({ include: "**/qwik/*", renderOpts: { base: "my-cdn-url/build" } }), ], });