diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-04-25 21:13:17 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-04-25 21:13:17 +0200 |
commit | c34a9f6213c204c43c78dd691a5295d7e5a757e8 (patch) | |
tree | 96f287daa52ade759b7b0e635b6e36dea7acaf86 /lib/output/website/options.js | |
parent | f5df41c75f6e6d25ffc9f86feeac29892fb9f856 (diff) | |
download | gitbook-c34a9f6213c204c43c78dd691a5295d7e5a757e8.zip gitbook-c34a9f6213c204c43c78dd691a5295d7e5a757e8.tar.gz gitbook-c34a9f6213c204c43c78dd691a5295d7e5a757e8.tar.bz2 |
Copy assets from themes to output folder
Diffstat (limited to 'lib/output/website/options.js')
-rw-r--r-- | lib/output/website/options.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/output/website/options.js b/lib/output/website/options.js index eca8a8d..ac9cdad 100644 --- a/lib/output/website/options.js +++ b/lib/output/website/options.js @@ -2,10 +2,13 @@ var Immutable = require('immutable'); var Options = Immutable.Record({ // Root folder for the output - root: String(), + root: String(), // Prefix for generation - prefix: String('website') + prefix: String('website'), + + // Use directory index url instead of "index.html" + directoryIndex: Boolean(true) }); module.exports = Options; |