diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-09-28 20:54:45 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-09-28 20:54:45 +0200 |
commit | c931e91befe143a8ed13d74e1b7d7b9fa6bb11d2 (patch) | |
tree | ca8417f3de7b59f8e000bbd8b988b9c656b725d0 /lib/configuration.js | |
parent | db9151ae365cf774d6178fe538f1fcb4423bdeb9 (diff) | |
download | gitbook-c931e91befe143a8ed13d74e1b7d7b9fa6bb11d2.zip gitbook-c931e91befe143a8ed13d74e1b7d7b9fa6bb11d2.tar.gz gitbook-c931e91befe143a8ed13d74e1b7d7b9fa6bb11d2.tar.bz2 |
Fix #952: add configuration for index maximum size
Diffstat (limited to 'lib/configuration.js')
-rw-r--r-- | lib/configuration.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/configuration.js b/lib/configuration.js index b314492..c8b15b8 100644 --- a/lib/configuration.js +++ b/lib/configuration.js @@ -201,6 +201,11 @@ Configuration.DEFAULT = { // version of gitbook to use "gitbook": "*", + // Search index + "search": { + "maxIndexSize": 1000000 + }, + // Structure "structure": { "langs": "LANGS.md", |