From 761a97e5249da98bd6a53c006b50af0293de1c15 Mon Sep 17 00:00:00 2001 From: Jason Jan Ngo Date: Thu, 11 May 2023 16:44:26 +0800 Subject: [PATCH 1/4] added documentation on customizing the logo --- .docs/content/1.introduction/4.configuration.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.docs/content/1.introduction/4.configuration.md b/.docs/content/1.introduction/4.configuration.md index 9cd3805d2..787255227 100644 --- a/.docs/content/1.introduction/4.configuration.md +++ b/.docs/content/1.introduction/4.configuration.md @@ -130,3 +130,17 @@ export default defineAppConfig({ | `github.repo` | `string` | | Name of the GitHub repo to edit files | | `github.owner` | `string` | | Owner of the repo | | `github.edit` | `boolean` | | Toggle "Edit this page on Github" component on documentation pages | + +## Customizing the logo + +To update the logo in the header, create a vue component with your own logo. In this example, the image is located at `/public/img`. + +``` +/components/Logo.vue +``` + +``` + +``` From e27b5133c94a9e9c2e4aa410512f9ea879090dac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Tue, 16 May 2023 13:35:11 +0200 Subject: [PATCH 2/4] Update .docs/content/1.introduction/4.configuration.md --- .docs/content/1.introduction/4.configuration.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.docs/content/1.introduction/4.configuration.md b/.docs/content/1.introduction/4.configuration.md index 787255227..c348b3cb9 100644 --- a/.docs/content/1.introduction/4.configuration.md +++ b/.docs/content/1.introduction/4.configuration.md @@ -135,10 +135,6 @@ export default defineAppConfig({ To update the logo in the header, create a vue component with your own logo. In this example, the image is located at `/public/img`. -``` -/components/Logo.vue -``` - ```