-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetlify.toml
65 lines (50 loc) · 1.16 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
65
[build]
publish = "_site"
command = "npm run build"
[[plugins]]
package = "@netlify/plugin-lighthouse"
[plugins.inputs.thresholds]
performance = 0.7
accessibility = 0.9
best-practices = 0.8
seo = 0.9
[[plugins]]
package = "netlify-plugin-no-more-404"
# all inputs are optional, we just show you the defaults below
[plugins.inputs]
# either "warn" or "error"
on404 = "error"
# change this key to a new one any time you need to restart from scratch
cacheKey = "1664656563000"
# (for development) turn true for extra diagnostic logging
debugMode = false
[[plugins]]
package = "netlify-plugin-a11y"
[[redirects]]
from = "/feed"
to = "/feed.xml"
status = 200
[[redirects]]
from = "/feed/feed.xml"
to = "/feed.xml"
status = 200
[[redirects]]
from = "/rss"
to = "/feed.xml"
status = 200
[[redirects]]
from = "/atom"
to = "/feed.xml"
status = 200
[[redirects]]
from = "/blog/bienvenido"
to = "/posts/bienvenido/"
status = 200
[[redirects]]
from = "/microensayos/*"
to = "/ensayosatomicos/:splat/"
status = 301
[[redirects]]
from = "/microensayos"
to = "/ensayosatomicos/"
status = 301