mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
19 lines
374 B
JavaScript
19 lines
374 B
JavaScript
var pkg = require('./package.json');
|
|
|
|
module.exports = {
|
|
// Documentation for GitBook is stored under "docs"
|
|
root: './docs',
|
|
title: 'GitBook Documentation',
|
|
|
|
// Enforce use of GitBook v3
|
|
gitbook: pkg.version,
|
|
|
|
// Use the "official" theme
|
|
plugins: ['theme-official'],
|
|
theme: 'official',
|
|
|
|
variables: {
|
|
version: pkg.version
|
|
}
|
|
};
|