diff options
| author | Dax <[email protected]> | 2025-07-07 15:53:43 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-07 15:53:43 -0400 |
| commit | f884766445bbf1fbce11f1db4bc6174e72d9baa5 (patch) | |
| tree | e7d9e7b3d8efc8bed249f9d29e2d8fb838a275f2 /packages/web/astro.config.mjs | |
| parent | 76b2e4539cb97bae5812ed2d832ce49d02e70c64 (diff) | |
| download | opencode-f884766445bbf1fbce11f1db4bc6174e72d9baa5.tar.gz opencode-f884766445bbf1fbce11f1db4bc6174e72d9baa5.zip | |
v2 message format and upgrade to ai sdk v5 (#743)
Co-authored-by: GitHub Action <[email protected]>
Co-authored-by: Liang-Shih Lin <[email protected]>
Co-authored-by: Dominik Engelhardt <[email protected]>
Co-authored-by: Jay V <[email protected]>
Co-authored-by: adamdottv <[email protected]>
Diffstat (limited to 'packages/web/astro.config.mjs')
| -rw-r--r-- | packages/web/astro.config.mjs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/web/astro.config.mjs b/packages/web/astro.config.mjs index 5095edc5c..63b93b9d8 100644 --- a/packages/web/astro.config.mjs +++ b/packages/web/astro.config.mjs @@ -20,11 +20,11 @@ export default defineConfig({ devToolbar: { enabled: false, }, + server: { + host: "0.0.0.0", + }, markdown: { - rehypePlugins: [ - rehypeHeadingIds, - [rehypeAutolinkHeadings, { behavior: "wrap" }], - ], + rehypePlugins: [rehypeHeadingIds, [rehypeAutolinkHeadings, { behavior: "wrap" }]], }, integrations: [ solidJs(), @@ -33,7 +33,7 @@ export default defineConfig({ expressiveCode: { themes: ["github-light", "github-dark"] }, social: [ { icon: "github", label: "GitHub", href: config.github }, - { icon: "discord", label: "Dscord", href: config.discord } + { icon: "discord", label: "Dscord", href: config.discord }, ], head: [ { |
