fes.js/docs/.vitepress/config.ts
qlin 8f57268ccd feat: 增加配置控制全局样式加载顺序 (#195)
* docs: remove pwa

* fix: 全局样式覆盖问题

* fix: 修复全局样式加载顺序问题

* chore: 优化代码
2023-06-02 10:59:31 +08:00

47 lines
1.3 KiB
TypeScript

import { defineConfig } from '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 defineConfig({
base: BASE_URL,
title: 'Fes.js',
description: '一个好用的前端应用解决方案',
vite: {
resolve: {
alias: [
{
find: /^.*\/VPHero\.vue$/,
replacement: fileURLToPath(new URL('./theme/components/VPHero.vue', import.meta.url)),
},
],
},
},
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',
},
},
});