Skip to content

@qwikdev/astro@0.8.2

Choose a tag to compare

@github-actions github-actions released this 04 Aug 18:14
· 129 commits to build/v2 since this release
08402f1

Patch Changes

  • 2af2e4a: feat: support global config for renderOpts

    You can now pass the renderOpts option to the qwik integration 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" } }),
      ],
    });