From b6b9fc92eaa602597da6fa780445ad495943cee9 Mon Sep 17 00:00:00 2001 From: arthurfiorette Date: Sun, 25 Dec 2022 18:53:01 -0300 Subject: [PATCH] docs: update navbar again --- docs/.vitepress/config.ts | 52 ++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 28 deletions(-) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 50ff1af..180afa8 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -20,7 +20,7 @@ export default defineConfig({ title: 'Axios Cache Interceptor', // Description for the site. This will render as a tag in the page HTML description: - 'Small and efficient cache interceptor for axios. Etag, Cache-Control, TTL, HTTP headers and more!.', + 'Small and efficient cache interceptor for axios. Etag, Cache-Control, TTL, HTTP headers and more!', // The directory where the markdown pages are stored srcDir: './src', @@ -247,7 +247,7 @@ export default defineConfig({ footer: { message: 'Made with ❤️', - copyright: 'Copyright © 2021-present Arthur Fiorette & Contributors' + copyright: 'Copyright (c) 2021-present Arthur Fiorette & Contributors' }, // TODO: Change this to the real one @@ -263,31 +263,27 @@ export default defineConfig({ // placement: 'vuejsorg' // }, - sidebar: { - '/guide': [ - { - text: 'Guide', - items: [ - { text: 'Introduction', link: '/guide' }, - { text: 'Getting Started', link: '/guide/getting-started' }, - { text: 'Debugging', link: '/guide/debugging' }, - { text: 'Storages', link: '/guide/storages' }, - { text: 'Request Id', link: '/guide/request-id' }, - { text: 'Invalidating Cache', link: '/guide/invalidating-cache' }, - { text: 'Comparison', link: '/guide/comparison' } - ] - } - ], - '/config': [ - { - text: 'Config', - items: [ - { text: 'Global Configuration', link: '/config' }, - { text: 'Request Specifics', link: '/config/request-specifics' }, - { text: 'Response Object', link: '/config/response-object' } - ] - } - ] - } + sidebar: [ + { + text: 'Guide', + items: [ + { text: 'Introduction', link: '/guide' }, + { text: 'Getting Started', link: '/guide/getting-started' }, + { text: 'Debugging', link: '/guide/debugging' }, + { text: 'Storages', link: '/guide/storages' }, + { text: 'Request Id', link: '/guide/request-id' }, + { text: 'Invalidating Cache', link: '/guide/invalidating-cache' }, + { text: 'Comparison', link: '/guide/comparison' } + ] + }, + { + text: 'Config', + items: [ + { text: 'Global Configuration', link: '/config' }, + { text: 'Request Specifics', link: '/config/request-specifics' }, + { text: 'Response Object', link: '/config/response-object' } + ] + } + ] } });