config.js 869 B

1234567891011121314151617181920212223242526272829303132
  1. module.exports = {
  2. title: 'iBS Member Portal',
  3. description: 'Where members buy things',
  4. themeConfig: {
  5. displayAllHeaders: true,
  6. nav: [
  7. // Normal Links
  8. { text: 'Home', link: '/' },
  9. { text: 'Guide', link: '/guide/' },
  10. // Links with dropdown
  11. {
  12. text: 'Resources',
  13. items: [
  14. { text: 'Prototype', link: 'https://drive.google.com/drive/u/0/folders/1kN1cyT0M-cjiCo3Qys5ydtX-Unam174E' },
  15. { text: 'URS', link: 'https://drive.google.com/drive/u/0/folders/0B3pJekzAmHmTZWtReXphWDk4QzQ' },
  16. { text: 'API Docs', link: 'https://drive.google.com/drive/u/0/folders/0B-IzsfKWJTKTYlVadHBHTnpMNE0' }
  17. ]
  18. },
  19. ],
  20. sidebar: [
  21. {
  22. title: 'Guide',
  23. collapsable: false,
  24. children: [
  25. '/guide/',
  26. '/guide/routing',
  27. ]
  28. }
  29. ]
  30. }
  31. }