config.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. module.exports = {
  2. title: 'flash-waimai',
  3. description: '使用flash-waimai快速构建外卖系统',
  4. base: '/waimai/',
  5. head: [
  6. ['link', { rel: 'shortcut icon', type: "image/x-icon", href: './favicon.ico' }]
  7. ],
  8. evergreen: true,
  9. editLinkText:'在 GitHub 上编辑此页',
  10. port: 8081,
  11. ga: 'UA-71886989-13',
  12. themeConfig: {
  13. repo: 'microapp-store/flash-waimai',
  14. docsDir: 'doc',
  15. editLinks: true,
  16. editLinkText: '编辑此页面!',
  17. nav: [
  18. {text: '文档', link: '/'},
  19. {text: '资源',link:'/resource'},
  20. {text: '捐赠',link:'/donate'},
  21. {text: 'Gitee', link: 'https://gitee.com/microapp/flash-waimai'},
  22. ],
  23. sidebar: [
  24. {
  25. title: '基本准备',
  26. collapsable: false,
  27. children: [
  28. '/base/jdkAndMaven',
  29. '/base/modules'
  30. ]
  31. },
  32. {
  33. title: '将本项目在跑起来',
  34. collapsable: false,
  35. children: [
  36. '/quickstart/quickstart',
  37. '/quickstart/clone',
  38. '/quickstart/initDb',
  39. '/quickstart/config',
  40. '/quickstart/startup'
  41. ]
  42. },
  43. {
  44. title: '其他',
  45. collapsable: false,
  46. children:[
  47. '/other/faq'
  48. ]
  49. }
  50. ]
  51. }
  52. }