config.js 541 B

123456789101112131415161718192021222324252627
  1. module.exports = {
  2. base: '/rust_camp_tutorial/',
  3. title: 'Rust训练营教程文档',
  4. description: 'DragonOS-Rust camp',
  5. head: [ // 注入到当前页面的 HTML <head> 中的标签
  6. [
  7. 'link',
  8. {
  9. rel: 'icon',
  10. href: '/logo.png'
  11. }
  12. ],
  13. // 自定义的网页标签图标
  14. ],
  15. themeConfig: {
  16. logo: '\logo.png',
  17. nav: [ // 导航栏配置
  18. {
  19. text: '首页', link: '/'
  20. },
  21. ],
  22. sidebar: 'auto', // 侧边栏配置
  23. }
  24. }