mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-19 00:55:13 +00:00
15 lines
338 B
JavaScript
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;
|