-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcloudcannon.config.cjs
More file actions
42 lines (40 loc) · 884 Bytes
/
cloudcannon.config.cjs
File metadata and controls
42 lines (40 loc) · 884 Bytes
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
module.exports = {
_select_data: {
social_icons: ['Facebook', 'Instagram', 'LinkedIn', 'Pinterest', 'Tumblr', 'Twitter', 'Youtube', 'RSS']
},
paths: {
collections: 'content',
data: 'content/data',
static: 'public',
uploads: 'public/uploads'
},
'collections-config': {
data: {
path: 'content/data',
name: 'Data',
},
clients: {
path: 'content/clients',
url: '/clients/[slug]',
'output': true
},
pages: {
path: 'content/pages',
url: '/[slug]',
'output': true,
_icon: 'wysiwyg',
_enabled_editors: ['visual','content']
},
'staff_members': {
path: 'content/staff-members',
_enabled_editors: ['data'],
name: 'Staff Members'
},
posts: {
path: 'content/posts',
'output': true,
url: '/blog/[slug]',
name: 'Blog'
}
}
};