From 6c2b2e87e081040960471d83e266e8750af72615 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 6 Oct 2023 00:39:44 +0200 Subject: [PATCH] properly use config function --- docs/.vuepress/config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 2fab6bb..f5d256d 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -1,7 +1,8 @@ import { searchProPlugin } from 'vuepress-plugin-search-pro' import { hopeTheme } from 'vuepress-theme-hope' +import { defineUserConfig } from 'vuepress' -export default { +export default defineUserConfig({ title: 'IT Team for Change', description: 'IT4C.dev introduces the IT Team for Change, applied Philosophy and Projects.', head: [ @@ -75,4 +76,4 @@ export default { ], }), ], -} +})