summaryrefslogtreecommitdiff
path: root/packages/integrations/node
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/node')
-rw-r--r--packages/integrations/node/CHANGELOG.md12
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.