-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetlify.toml
More file actions
32 lines (29 loc) · 661 Bytes
/
netlify.toml
File metadata and controls
32 lines (29 loc) · 661 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
[build]
base = "./"
publish = "docs/.vuepress/dist"
command = "yarn docs:build"
# 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"
# We need this so preview environments and the base site look ok on their own
[[redirects]]
from = "/"
to = "/plugin-test"
status = 200
[[redirects]]
from = "/plugin-test/*"
to = "/:splat"
status = 200