From 6392ec24699b9e3bfeecea45bb2122adb5d9a8c6 Mon Sep 17 00:00:00 2001 From: Kot Date: Mon, 11 Jul 2022 18:21:35 -0700 Subject: [PATCH] Include more package managers in the install step --- docs/content/3.guide/3.recipes/1.sitemap.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/content/3.guide/3.recipes/1.sitemap.md b/docs/content/3.guide/3.recipes/1.sitemap.md index b0da08d87..8fb2fc0af 100644 --- a/docs/content/3.guide/3.recipes/1.sitemap.md +++ b/docs/content/3.guide/3.recipes/1.sitemap.md @@ -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