2023-05-15 21:47:01 +08:00
|
|
|
import { defineConfig } from 'vitepress'
|
2023-07-14 22:20:15 +08:00
|
|
|
import locales from './locales'
|
2023-05-15 21:47:01 +08:00
|
|
|
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
|
|
export default defineConfig({
|
2023-05-15 22:35:03 +08:00
|
|
|
title: 'Clash',
|
|
|
|
|
|
|
|
base: '/clash/',
|
2023-05-15 21:47:01 +08:00
|
|
|
|
2023-05-21 21:24:21 +08:00
|
|
|
head: [
|
|
|
|
[
|
|
|
|
'link',
|
|
|
|
{ rel: 'icon', type: "image/x-icon", href: '/clash/logo.png' }
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
2023-07-14 22:20:15 +08:00
|
|
|
locales: locales.locales,
|
2023-05-15 21:47:01 +08:00
|
|
|
|
2023-07-14 22:20:15 +08:00
|
|
|
lastUpdated: true,
|
2023-05-15 21:47:01 +08:00
|
|
|
|
2023-07-14 22:20:15 +08:00
|
|
|
themeConfig: {
|
|
|
|
search: {
|
|
|
|
provider: 'local',
|
|
|
|
options: {
|
|
|
|
locales: {
|
|
|
|
zh_CN: {
|
|
|
|
translations: {
|
|
|
|
button: {
|
|
|
|
buttonText: '搜索文档',
|
|
|
|
buttonAriaLabel: '搜索文档'
|
|
|
|
},
|
|
|
|
modal: {
|
|
|
|
noResultsText: '无法找到相关结果',
|
|
|
|
resetButtonTitle: '清除查询条件',
|
|
|
|
footer: {
|
|
|
|
selectText: '选择',
|
|
|
|
navigateText: '切换'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-05-15 21:47:01 +08:00
|
|
|
|
|
|
|
}
|
2023-07-14 22:20:15 +08:00
|
|
|
}
|
|
|
|
},
|
2023-05-15 21:47:01 +08:00
|
|
|
})
|