Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions docs/content/3.guide/3.recipes/1.sitemap.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,17 @@ description: 'A sitemap file is useful for helping Google to better index your w

This can be created utilising the `sitemap` library, so you'll need to install that which can be done like so:

```bash
yarn add --dev sitemap
```
::code-group
```bash [yarn]
yarn add --dev sitemap
```
```bash [npm]
npm install --save-dev sitemap
```
```bash [pnpm]
pnpm add --save-dev sitemap
```
::

## Server Route

Expand Down