summaryrefslogtreecommitdiffstats
path: root/lib/output/website/options.js
blob: ac9cdad5885ed855a3a2bad9519b7e48bdba507f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;