diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index cf792a7c..ecea0f21 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -1,36 +1,50 @@ import { defineConfig } from 'vitepress'; -import { withPwa } from '@vite-pwa/vitepress' +import { fileURLToPath, URL } from 'node:url'; +import { withPwa } from '@vite-pwa/vitepress'; import { navbar, sidebar } from './configs'; const BASE_URL = process.env.BASE ? `/${process.env.BASE}/` : '/'; -export default withPwa(defineConfig({ - base: BASE_URL, - title: 'Fes.js', - description: '一个好用的前端应用解决方案', +export default withPwa( + defineConfig({ + base: BASE_URL, + title: 'Fes.js', + description: '一个好用的前端应用解决方案', - head: [ - ['link', { rel: 'icon', href: `/logo.png` }], - ], - - themeConfig: { - logo: '/logo.png', - nav: navbar.zh, - sidebar: sidebar.zh, - - outline: { - label: '本页目录' + vite: { + resolve: { + alias: [ + { + find: /^.*\/VPHero\.vue$/, + replacement: fileURLToPath(new URL('./theme/components/VPHero.vue', import.meta.url)), + }, + ], + }, }, - search: { - provider: 'local' + head: [['link', { rel: 'icon', href: `/logo.png` }]], + + themeConfig: { + socialLinks: [{ icon: 'github', link: 'https://github.com/WeBankFinTech/fes.js' }], + + logo: '/logo.png', + nav: navbar.zh, + sidebar: sidebar.zh, + + outline: { + label: '本页目录', + }, + + search: { + provider: 'local', + }, + + footer: { + message: 'Released under the MIT License.', + copyright: 'Copyright © 2020-present Webank', + }, }, - footer: { - message: 'Released under the MIT License.', - copyright: 'Copyright © 2020-present Webank' - }, - }, - - pwa: {} -})); + pwa: {}, + }), +); diff --git a/docs/.vitepress/theme/components/HomeContent.vue b/docs/.vitepress/theme/components/HomeContent.vue index 00e47b1f..027004e0 100644 --- a/docs/.vitepress/theme/components/HomeContent.vue +++ b/docs/.vitepress/theme/components/HomeContent.vue @@ -1,6 +1,6 @@