Skip to content

Commit 08402f1

Browse files
Merge pull request #271 from QwikDev/changeset-release/main
Version Packages
2 parents aa87af6 + 568d5a9 commit 08402f1

File tree

3 files changed

+22
-19
lines changed

3 files changed

+22
-19
lines changed

.changeset/green-jobs-jog.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

libs/qwikdev-astro/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @qwikdev/astro
22

3+
## 0.8.2
4+
5+
### Patch Changes
6+
7+
- 2af2e4a: feat: support global config for renderOpts
8+
9+
You can now pass the `renderOpts` option to the `qwik` integration to set global render options for all Qwik components.
10+
11+
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.
12+
13+
```ts
14+
import { defineConfig } from "astro/config";
15+
import qwik from "@qwikdev/astro";
16+
17+
export default defineConfig({
18+
integrations: [
19+
qwik({ include: "**/qwik/*", renderOpts: { base: "my-cdn-url/build" } }),
20+
],
21+
});
22+
```
23+
324
## 0.8.1
425

526
### Patch Changes

libs/qwikdev-astro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@qwikdev/astro",
33
"description": "Use Qwik components and Resumability within Astro",
4-
"version": "0.8.1",
4+
"version": "0.8.2",
55
"contributors": [
66
{
77
"name": "Jack Shelton",

0 commit comments

Comments
 (0)