diff options
author | 2021-07-20 15:56:20 -0500 | |
---|---|---|
committer | 2021-07-20 15:56:20 -0500 | |
commit | 6915dc688bdd3bb5b9230c710516509ebec7ee78 (patch) | |
tree | 9b28aadbb3af7938c3c8fb35f3b1e55567d7e3fe /docs/src/config.ts | |
parent | 225baf1fc69475500b1f65a7c9ed7dc601fec985 (diff) | |
download | astro-6915dc688bdd3bb5b9230c710516509ebec7ee78.tar.gz astro-6915dc688bdd3bb5b9230c710516509ebec7ee78.tar.zst astro-6915dc688bdd3bb5b9230c710516509ebec7ee78.zip |
docs: fix the templating setup for the `<title/>` in `MainLayout.astro` (#779)
Diffstat (limited to 'docs/src/config.ts')
-rw-r--r-- | docs/src/config.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/src/config.ts b/docs/src/config.ts index 2a4197ae9..b24b5c499 100644 --- a/docs/src/config.ts +++ b/docs/src/config.ts @@ -67,3 +67,7 @@ export const sidebar = [ // ], // }, ]; + +export const site = { + title: 'Astro Documentation', +}; |