mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-20 01:25:16 +00:00
18 lines
427 B
JavaScript
18 lines
427 B
JavaScript
var Immutable = require('immutable');
|
|
|
|
var Options = Immutable.Record({
|
|
// Root folder for the output
|
|
root: String(),
|
|
|
|
// Prefix for generation
|
|
prefix: String('ebook'),
|
|
|
|
// Format to generate using ebook-convert
|
|
format: String(),
|
|
|
|
// Force use of absolute urls ("index.html" instead of "/")
|
|
directoryIndex: Boolean(false)
|
|
});
|
|
|
|
module.exports = Options;
|