From 89d3374360f66bf75adc6e308ab36a8688c152b2 Mon Sep 17 00:00:00 2001 From: mahula Date: Mon, 3 Nov 2025 21:22:56 +0100 Subject: [PATCH] add author information to theme configuration due to update requirements --- docs/.vuepress/config/theme.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/.vuepress/config/theme.js b/docs/.vuepress/config/theme.js index f6a6c69..c2d2810 100644 --- a/docs/.vuepress/config/theme.js +++ b/docs/.vuepress/config/theme.js @@ -1,7 +1,10 @@ import { hopeTheme } from 'vuepress-theme-hope' export default hopeTheme({ - favicon: 'favicon.ico', + author: { + name: "busFaktor() e.V.", + url: "https://www.busfaktor.org/", + },favicon: 'favicon.ico', logo: '/logo.svg', docsRepo: 'https://github.com/Ocelot-Social-Community/ocelot.social', repo: 'https://github.com/Ocelot-Social-Community/Ocelot-Social', @@ -182,6 +185,9 @@ export default hopeTheme({ blog: { excerptLength: 0, }, + icon: { + assets: 'fontawesome', + }, redirect: { autoLocale: true, defaultBehavior: 'defaultLocale', @@ -203,6 +209,5 @@ export default hopeTheme({ fallbackImage: '/logo.svg', hostname: 'https://ocelot.social/' } - }, - iconAssets: "fontawesome", + } })