-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
netlify.toml
64 lines (55 loc) · 1.65 KB
/
netlify.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
[build]
base = "./"
publish = "docs/.vitepress/dist"
command = "npm run docs:mvb"
[context.deploy-preview]
command = "npm run docs:build"
# https://github.com/munter/netlify-plugin-checklinks#readme
[[context.deploy-preview.plugins]]
package = "netlify-plugin-checklinks"
[context.deploy-preview.plugins.inputs]
todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "/v/" ]
skipPatterns = [ ".rss", ".gif", ".jpg" ]
checkExternal = true
# Sets our asset optimization
[build.processing.css]
bundle = true
minify = true
[build.processing.js]
bundle = true
minify = true
[build.processing.html]
pretty_urls = false
[build.processing.images]
compress = true
# Caches our images for 1 year
[[headers]]
for = "/images/*"
[headers.values]
Cache-Control = "public, max-age=31536000"
# pluginz
# https://github.com/netlify/netlify-plugin-lighthouse#readme
[[plugins]]
package = "@netlify/plugin-lighthouse"
[plugins.inputs.audits]
output_path = "reports/lighthouse.html"
# https://github.com/munter/netlify-plugin-checklinks#readme
[[plugins]]
package = "netlify-plugin-checklinks"
[plugins.inputs]
todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "fragment-check" ]
skipPatterns = [ ".rss", ".gif", ".jpg" ]
checkExternal = true
# We need this so preview environments and the base site look ok on their own
[[redirects]]
from = "/"
to = "/plugins/lagoon"
status = 200
[[redirects]]
from = "/plugins/lagoon/*"
to = "/:splat"
status = 200
[[redirects]]
from = "/plugins/lagoon/external-access.html"
to = "https://docs.lando.dev/guides/external-access.html"
status = 200