-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocz.settings.json
More file actions
63 lines (55 loc) · 1.22 KB
/
docz.settings.json
File metadata and controls
63 lines (55 loc) · 1.22 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
{
"root": ".",
"preview": {
"host": "127.0.0.1",
"port": 0,
"open": true,
"strict_mime": true,
"compression": { "gzip": true, "brotli": false },
"cache": { "etag": true, "immutable_third_party": true }
},
"build": {
"out_dir": "out",
"hash_assets": true,
"integrity": "sha256",
"sourcemaps": true,
"katex": "server",
"minify_html": false
},
"third_party": {
"root": "third_party",
"katex_version": "0.16.22",
"tailwind_theme_glob": "tailwind/docz-theme-*/css/docz.tailwind.css"
},
"theme": {
"mode": "auto",
"path": null,
"prefer_vendored": true,
"fallback": "default"
},
"tailwind": {
"enabled": false,
"config": "tailwind.config.ts",
"input": "styles/docz.css",
"output": "themes/default/dist/docz.tailwind.css",
"postcss": "postcss.config.cjs"
},
"csp": {
"enabled": true,
"script_src": ["'self'"],
"style_src": ["'self'"],
"img_src": ["'self'", "data:"],
"object_src": ["'none'"],
"worker_src": ["'self'"],
"base_uri": ["'none'"],
"frame_ancestors": ["'none'"]
},
"wasm": {
"enabled": false,
"timeout_ms": 3000
},
"logging": {
"level": "info",
"json": false
}
}