From b52509ec723cb87de3066a5e601f4997ad4b4709 Mon Sep 17 00:00:00 2001 From: Jason Jan Ngo Date: Wed, 17 May 2023 00:07:41 +0800 Subject: [PATCH] docs: logo customization (#905) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Chopin Co-authored-by: Yaël GUILLOUX --- .../content/1.introduction/4.configuration.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.starters/default/content/1.introduction/4.configuration.md b/.starters/default/content/1.introduction/4.configuration.md index d7404ac99..cd99ce10c 100644 --- a/.starters/default/content/1.introduction/4.configuration.md +++ b/.starters/default/content/1.introduction/4.configuration.md @@ -132,3 +132,15 @@ 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 component in `components/Logo.vue` with your own logo. + +In this example, the image is located at `/public/img`. + +```vue [components/Logo.vue] + +```