-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
95 lines (84 loc) · 1.94 KB
/
config.toml
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
87
88
89
90
91
92
93
94
95
[build]
writeStats = true
[build.processing]
skip_processing = false
[build.processing.css]
bundle = true
minify = true
target = "css/main.css"
includePaths = ["assets/scss"]
[build.processing.js]
bundle = true
minify = true
target = "js/main.js"
[module]
[[module.mounts]]
source = "assets"
target = "assets"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[params]
mainSections = ["work"]
description = "Portfolio website showcasing work and thoughts on design and development"
author = "Kyle Kochanek"
[imaging]
quality = 90
resampleFilter = "lanczos"
anchor = "smart"
[imaging.exif]
disableDate = true
disableLatLong = true
[minify]
disableCSS = false
disableHTML = false
disableJS = false
disableJSON = false
disableSVG = false
minifyOutput = true
[minify.tdewolff]
[minify.tdewolff.html]
keepWhitespace = false
[minify.tdewolff.js]
precision = 1
[minify.tdewolff.css]
precision = 1
[outputs]
home = ["HTML", "RSS", "JSON"]
section = ["HTML", "RSS", "JSON"]
[caches]
[caches.getjson]
dir = ":cacheDir/:project"
maxAge = "10s"
[server]
[[server.headers]]
for = "/**"
[server.headers.values]
Cache-Control = "public, max-age=31536000"
X-Content-Type-Options = "nosniff"
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"
for = "/*.js"
[server.headers.values]
Cache-Control = "public, max-age=31536000"
Link = "</css/main.css>; rel=preload; as=style"
[menu]
[[menu.main]]
identifier = "work"
name = "Work"
url = "/work/"
weight = 1
[[menu.main]]
identifier = "about"
name = "About"
url = "/about/"
weight = 2
[[menu.main]]
identifier = "contact"
name = "Contact"
url = "/contact/"
weight = 3
baseURL = "https://kylekochanek.com"
languageCode = "en-us"
title = "Kyle Kochanek"