-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
netlify.toml
54 lines (46 loc) · 1.27 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
[build]
command = "yarn run build"
publish = "dist"
# Plausible
[[redirects]]
from = "/blueberry-cobbler/js/script.js"
to = "https://plausible.io/js/script.js"
status = 200
[[redirects]]
from = "/blueberry-cobbler/api/event"
to = "https://plausible.io/api/event"
status = 200
[[redirects]]
from = "/blood-moon"
to = "https://www.blood-moon.dannyguo.com"
status = 301
[[redirects]]
from = "/pawblock"
to = "https://www.pawblock.dannyguo.com"
status = 301
[[redirects]]
from = "/react-with-fuse-demo"
to = "https://dguo.github.io/react-with-fuse-demo/"
status = 302
[[redirects]]
from = "/web-worker-demo"
to = "https://dguo.github.io/web-worker-demo/"
status = 302
# We shouldn't need this redirect for the home page because of the next, catch-all
# redirect. But without this one, we get an infinite redirect issue for some
# reason.
[[redirects]]
from = "/jennyanddanny"
to = "https://jenny-and-danny.netlify.app/jennyanddanny"
status = 200
force = true
[[redirects]]
from = "/jennyanddanny/*"
to = "https://jenny-and-danny.netlify.app/jennyanddanny/:splat"
status = 200
force = true
[[redirects]]
from = "/netlifysubsitetest/*"
to = "https://netlify-subsite-test.netlify.app/netlifysubsitetest/:splat"
status = 200
force = true