This repository was archived by the owner on Jan 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault.js
More file actions
executable file
·86 lines (86 loc) · 2.11 KB
/
default.js
File metadata and controls
executable file
·86 lines (86 loc) · 2.11 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
module.exports = exports = {
port: 4000,
cache: true,
logs: {
console: true,
json: true,
path: "./_logs"
},
view: {
module: "nunjucks",
extension: "html",
scaffold: true,
minify: true
},
languages: [
{
code: "en-us",
relative_url_prefix: "/"
}
],
storage: {
provider: "FileSystem",
options: {
basedir: "./_content"
}
},
assets: {
pattern: "/assets/:uid/:filename",
basedir: "./_content",
options: {
dotfiles: 'ignore',
etag: true,
extensions: [ 'html', 'htm'],
fallthrough: true,
index: 'index.html',
lastModified: true,
maxAge: 0,
redirect: true,
setHeaders: function (res, path, stat) {
res.set('x-timestamp', Date.now());
}
}
},
"static": {
url: "/static",
path: "public",
options: {
dotfiles: 'ignore',
etag: true,
extensions: [ 'html', 'htm'],
fallthrough: true,
index: 'index.html',
lastModified: true,
maxAge: 0,
redirect: true,
setHeaders: function (res, path, stat) {
res.set('x-timestamp', Date.now());
}
}
},
contentstack: {
host: "https://api.contentstack.io",
version: "v3",
socket: "https://contentstack-realtime.built.io/",
urls: {
stacks: "/stacks/",
content_types: "/content_types/",
entries: "/entries/",
assets: "/assets/",
environments: "/environments/",
publish_queue: "/publish-queue/",
session: "/user-session/",
user: "/user/"
},
events: {
delete: "delete",
publish: "publish",
unpublish: "unpublish"
},
types: {
asset: "asset",
entry: "entry",
form: "form"
}
}
}