22 lines
		
	
	
		
			542 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			542 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineConfig } from 'vitepress'
 | 
						|
import  { homeSidebar } from './home.mts'
 | 
						|
// https://vitepress.dev/reference/site-config
 | 
						|
export default defineConfig({
 | 
						|
  title: "AI 写书",
 | 
						|
  description: "如果通过关键字进行写书,生成体系化知识库。",
 | 
						|
  themeConfig: {
 | 
						|
    // https://vitepress.dev/reference/default-theme-config
 | 
						|
    nav: [
 | 
						|
      { text: '首页', link: '/' },
 | 
						|
    ],
 | 
						|
 | 
						|
    sidebar: [
 | 
						|
      ...homeSidebar
 | 
						|
    ],
 | 
						|
 | 
						|
    socialLinks: [
 | 
						|
      { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
 | 
						|
    ]
 | 
						|
  }
 | 
						|
})
 |