-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
netlify.toml
88 lines (74 loc) · 1.67 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build]
base = "./"
publish = "sources/@repo/docs/build/"
command = "yarn docusaurus build"
[[redirects]]
from = "http://budjs.netlify.app/*"
to = "https://bud.js.org/:splat"
status = 301
force = true
[[redirects]]
from = "https://budjs.netlify.app/*"
to = "https://bud.js.org/:splat"
status = 301
force = true
[[redirects]]
from = "/blog/tags/release"
to = "/releases"
status = 301
force = true
[[redirects]]
from = "/blog/*"
to = "/releases/:splat"
status = 301
force = true
[[redirects]]
from = "/guides/general-use/multi-compiler"
to = "/guides/general-use/multi-instance"
status = 301
force = true
[[redirects]]
from = "/guides/general-use/transpiler-sources"
to = "/guides/general-use/compiler-sources"
status = 301
force = true
[[redirects]]
from = "/packages/wordpress-hmr"
to = "/extensions/bud-preset-wordpress"
status = 301
force = true
[[redirects]]
from = "/packages/wordpress-hmr"
to = "/extensions/bud-preset-wordpress"
status = 301
force = true
[[redirects]]
from = "/guides/*"
to = "/learn/:splat"
status = 301
force = true
[[redirects]]
from = "/docs/bud.template"
to = "/reference/bud.html"
status = 301
force = true
[[redirects]]
from = "/docs/general-use/alternative-config-syntax"
to = "/learn/config/files/bud.config"
status = 301
force = true
[[redirects]]
from = "/docs/general-use/config-layers"
to = "/learn/config/files/bud.config"
status = 301
force = true
[[redirects]]
from = "/docs/general-use/extensions"
to = "/learn/config/extensions"
status = 301
force = true
[[redirects]]
from = "/docs/*"
to = "/reference/:splat"
status = 301
force = true