summaryrefslogtreecommitdiffstats
path: root/book.js
blob: a10ff2c992ad23cacf58521c72a1e103ec8d9473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
    }
};