Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

60 rader
1.5 KiB

  1. /**
  2. * Copyright (c) 2017-present, Facebook, Inc.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. // See https://docusaurus.io/docs/site-config for all the possible
  8. // site configuration options.
  9. const siteConfig = {
  10. title: 'Diagrams',
  11. tagline: 'Diagram as Code',
  12. url: 'https://diagrams.mingrammer.com',
  13. baseUrl: '/',
  14. cname: 'diagrams.mingrammer.com',
  15. projectName: 'diagrams',
  16. organizationName: 'mingrammer',
  17. headerLinks: [
  18. {doc: 'installation', label: 'Docs'},
  19. {doc: 'diagram', label: 'Guides'},
  20. {href: 'https://github.com/mingrammer/diagrams', label: 'GitHub'},
  21. ],
  22. headerIcon: 'img/diagrams.ico',
  23. footerIcon: 'img/diagrams.ico',
  24. favicon: 'img/diagrams.ico',
  25. colors: {
  26. primaryColor: '#5E73E5',
  27. secondaryColor: '#5E89E5',
  28. },
  29. copyright: `Copyright © ${new Date().getFullYear()} mingrammer`,
  30. highlight: {
  31. // Highlight.js theme to use for syntax highlighting in code blocks.
  32. theme: 'default',
  33. },
  34. // Add custom scripts here that would be placed in <script> tags.
  35. scripts: ['https://buttons.github.io/buttons.js'],
  36. // On page navigation for the current documentation page.
  37. onPageNav: 'separate',
  38. cleanUrl: true,
  39. // Open Graph and Twitter card images.
  40. facebookComments: false,
  41. twitterImage: 'img/diagrams.png',
  42. ogImage: 'img/diagrams.png',
  43. docsSideNavCollapsible: false,
  44. enableUpdateTime: true,
  45. };
  46. module.exports = siteConfig;