book.js 496 B

1234567891011121314151617181920212223
  1. var pkg = require('./package.json');
  2. module.exports = {
  3. // Documentation for GitBook is stored under "docs"
  4. root: './doc/',
  5. title: '代码收集',
  6. // Enforce use of GitBook v3
  7. gitbook: '3.1.1',
  8. // Use the "official" theme
  9. plugins: ['theme-official@2.1.1', '-sharing', '-fontsettings', 'sitemap'],
  10. variables: {
  11. version: pkg.version
  12. },
  13. pluginsConfig: {
  14. sitemap: {
  15. hostname: 'https://toolchain.gitbook.com'
  16. }
  17. }
  18. };