diff options
author | 2023-10-26 19:13:43 +0800 | |
---|---|---|
committer | 2023-10-26 19:13:43 +0800 | |
commit | ec7f53168273e040119341c8e3bbdf1571bccfa0 (patch) | |
tree | 1d00b81d6b9caadd5faf16bee28488f22dcb5002 /packages/integrations/node | |
parent | c8976440ff396843af5d73ddddd97b230a1866f5 (diff) | |
download | astro-ec7f53168273e040119341c8e3bbdf1571bccfa0.tar.gz astro-ec7f53168273e040119341c8e3bbdf1571bccfa0.tar.zst astro-ec7f53168273e040119341c8e3bbdf1571bccfa0.zip |
Fix examples smoke test fail (#8923)
Diffstat (limited to 'packages/integrations/node')
-rw-r--r-- | packages/integrations/node/CHANGELOG.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md index c37b15346..1b319f62d 100644 --- a/packages/integrations/node/CHANGELOG.md +++ b/packages/integrations/node/CHANGELOG.md @@ -210,12 +210,12 @@ ```js import { defineConfig } from 'astro/config'; - export defaultdefineConfig({ - output: 'hybrid', - experimental: { - hybridOutput: true, - }, - }) + export default defineConfig({ + output: 'hybrid', + experimental: { + hybridOutput: true, + }, + }); ``` Then add `export const prerender = false` to any page or endpoint you want to opt-out of pre-rendering. |