mirror of https://github.com/vuejs/vitepress
parent
08d38fe706
commit
e0068383f0
@ -0,0 +1,155 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig, type DefaultTheme } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'en-US',
|
||||
description: 'Vite & Vue powered static site generator.',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
sidebar: {
|
||||
'/guide/': { base: '/guide/', items: sidebarGuide() },
|
||||
'/reference/': { base: '/reference/', items: sidebarReference() }
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/vuejs/vitepress/edit/main/docs/:path',
|
||||
text: 'Edit this page on GitHub'
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: 'Released under the MIT License.',
|
||||
copyright: 'Copyright © 2019-present Evan You'
|
||||
},
|
||||
|
||||
search: {
|
||||
provider: 'algolia',
|
||||
options: {
|
||||
appId: '8J64VVRP8K',
|
||||
apiKey: 'a18e2f4cc5665f6602c5631fd868adfd',
|
||||
indexName: 'vitepress'
|
||||
}
|
||||
},
|
||||
|
||||
carbonAds: {
|
||||
code: 'CEBDT27Y',
|
||||
placement: 'vuejsorg'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav(): DefaultTheme.NavItem[] {
|
||||
return [
|
||||
{
|
||||
text: 'Guide',
|
||||
link: '/guide/what-is-vitepress',
|
||||
activeMatch: '/guide/'
|
||||
},
|
||||
{
|
||||
text: 'Reference',
|
||||
link: '/reference/site-config',
|
||||
activeMatch: '/reference/'
|
||||
},
|
||||
{
|
||||
text: pkg.version,
|
||||
items: [
|
||||
{
|
||||
text: 'Changelog',
|
||||
link: 'https://github.com/vuejs/vitepress/blob/main/CHANGELOG.md'
|
||||
},
|
||||
{
|
||||
text: 'Contributing',
|
||||
link: 'https://github.com/vuejs/vitepress/blob/main/.github/contributing.md'
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
/* prettier-ignore */
|
||||
function sidebarGuide(): DefaultTheme.SidebarItem[] {
|
||||
return [
|
||||
{
|
||||
text: 'Introduction',
|
||||
collapsed: false,
|
||||
items: [
|
||||
{ text: 'What is VitePress?', link: 'what-is-vitepress' },
|
||||
{ text: 'Getting Started', link: 'getting-started' },
|
||||
{ text: 'Routing', link: 'routing' },
|
||||
{ text: 'Deploy', link: 'deploy' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Writing',
|
||||
collapsed: false,
|
||||
items: [
|
||||
{ text: 'Markdown Extensions', link: 'markdown' },
|
||||
{ text: 'Asset Handling', link: 'asset-handling' },
|
||||
{ text: 'Frontmatter', link: 'frontmatter' },
|
||||
{ text: 'Using Vue in Markdown', link: 'using-vue' },
|
||||
{ text: 'Internationalization', link: 'i18n' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Customization',
|
||||
collapsed: false,
|
||||
items: [
|
||||
{ text: 'Using a Custom Theme', link: 'custom-theme' },
|
||||
{ text: 'Extending the Default Theme', link: 'extending-default-theme' },
|
||||
{ text: 'Build-Time Data Loading', link: 'data-loading' },
|
||||
{ text: 'SSR Compatibility', link: 'ssr-compat' },
|
||||
{ text: 'Connecting to a CMS', link: 'cms' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Experimental',
|
||||
collapsed: false,
|
||||
items: [
|
||||
{ text: 'MPA Mode', link: 'mpa-mode' },
|
||||
{ text: 'Sitemap Generation', link: 'sitemap-generation' }
|
||||
]
|
||||
},
|
||||
{ text: 'Config & API Reference', base: '/reference/', link: 'site-config' }
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarReference(): DefaultTheme.SidebarItem[] {
|
||||
return [
|
||||
{
|
||||
text: 'Reference',
|
||||
items: [
|
||||
{ text: 'Site Config', link: 'site-config' },
|
||||
{ text: 'Frontmatter Config', link: 'frontmatter-config' },
|
||||
{ text: 'Runtime API', link: 'runtime-api' },
|
||||
{ text: 'CLI', link: 'cli' },
|
||||
{
|
||||
text: 'Default Theme',
|
||||
base: '/reference/default-theme-',
|
||||
items: [
|
||||
{ text: 'Overview', link: 'config' },
|
||||
{ text: 'Nav', link: 'nav' },
|
||||
{ text: 'Sidebar', link: 'sidebar' },
|
||||
{ text: 'Home Page', link: 'home-page' },
|
||||
{ text: 'Footer', link: 'footer' },
|
||||
{ text: 'Layout', link: 'layout' },
|
||||
{ text: 'Badge', link: 'badge' },
|
||||
{ text: 'Team Page', link: 'team-page' },
|
||||
{ text: 'Prev / Next Links', link: 'prev-next-links' },
|
||||
{ text: 'Edit Link', link: 'edit-link' },
|
||||
{ text: 'Last Updated Timestamp', link: 'last-updated' },
|
||||
{ text: 'Search', link: 'search' },
|
||||
{ text: 'Carbon Ads', link: 'carbon-ads' }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,20 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
import en from './en'
|
||||
import zh from './zh'
|
||||
|
||||
export default defineConfig({
|
||||
locales: {
|
||||
root: {
|
||||
label: 'English',
|
||||
lang: en.lang,
|
||||
themeConfig: en.themeConfig,
|
||||
description: en.description
|
||||
},
|
||||
zh: {
|
||||
label: '简体中文',
|
||||
lang: zh.lang,
|
||||
themeConfig: zh.themeConfig,
|
||||
description: zh.description
|
||||
}
|
||||
}
|
||||
})
|
||||
Loading…
Reference in new issue