Files
gitbook/lib/output/website/options.js
T
2016-04-25 21:13:17 +02:00

15 lines
338 B
JavaScript

var Immutable = require('immutable');
var Options = Immutable.Record({
// Root folder for the output
root: String(),
// Prefix for generation
prefix: String('website'),
// Use directory index url instead of "index.html"
directoryIndex: Boolean(true)
});
module.exports = Options;