12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
var pkg = require('../package.json');
|
|
|
|
module.exports = {
|
|
title: 'GitBook Documentation',
|
|
|
|
plugins: ['theme-official'],
|
|
theme: 'official',
|
|
variables: {
|
|
version: pkg.version
|
|
}
|
|
};
|