Skip to content

Commit

Permalink
Update server-side-rendering.mdx (withastro#5430)
Browse files Browse the repository at this point in the history
  • Loading branch information
teinett authored Nov 16, 2023
1 parent e2c9a3c commit ad9ba34
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/content/docs/en/guides/server-side-rendering.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,13 @@ For example, to configure a highly dynamic app where every page is rendered on d

```js ins={5} title="astro.config.mjs"
import { defineConfig } from 'astro/config';
import nodejs from '@astrojs/nodejs';
import node from "@astrojs/node";

export default defineConfig({
output: 'server',
adapter: node({
mode: "standalone"
})
});
```

Expand Down

0 comments on commit ad9ba34

Please sign in to comment.