mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-12 05:48:57 +00:00
24 lines
515 B
JavaScript
24 lines
515 B
JavaScript
var pkg = require('./package.json');
|
|
|
|
module.exports = {
|
|
// Documentation for GitBook is stored under "docs"
|
|
root: './docs',
|
|
title: 'GitBook Toolchain Documentation',
|
|
|
|
// Enforce use of GitBook v3
|
|
gitbook: '3.1.1',
|
|
|
|
// Use the "official" theme
|
|
plugins: ['theme-official@2.1.1', '-sharing', '-fontsettings', 'sitemap'],
|
|
|
|
variables: {
|
|
version: pkg.version
|
|
},
|
|
|
|
pluginsConfig: {
|
|
sitemap: {
|
|
hostname: 'https://toolchain.gitbook.com'
|
|
}
|
|
}
|
|
};
|