forked from mrvautin/squido-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
54 lines (53 loc) · 1.61 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const config = {
development: {
name: 'squido documentation',
description: 'Squido documentation - A dead-simple Node.js static HTML website generator for super fast static websites which are easier to develop, more secure and dirt cheap to host.',
twitterHandle: '@squido_app',
facebookApp: '1492953114375539',
baseUrl: 'http://localhost:4965',
sourcesExt: 'markdown',
layout: 'layout.hbs',
sourceDir: 'source',
buildDir: 'build',
summaryLength: 250,
port: 4965,
pagination: false,
postPerPage: 8,
plugins: [
{
name: 'search',
options: {}
},
{
name: 'robots',
options: {}
}
]
},
production: {
name: 'squido documentation',
description: 'Squido documentation - A dead-simple Node.js static HTML website generator for super fast static websites which are easier to develop, more secure and dirt cheap to host.',
twitterHandle: '@squido_app',
facebookApp: '1492953114375539',
baseUrl: 'https://docs.squido.org',
sourcesExt: 'markdown',
layout: 'layout.hbs',
sourceDir: 'source',
buildDir: 'build',
summaryLength: 250,
port: 4965,
pagination: false,
postPerPage: 8,
plugins: [
{
name: 'search',
options: {}
},
{
name: 'robots',
options: {}
}
]
}
};
module.exports = config;