-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathnetlify.toml
62 lines (49 loc) · 1.64 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
[build]
base = "/"
publish = "public/"
command = """
set -e
export NODE_OPTIONS="--max_old_space_size=4096"
mkdir -p public/
npm run build
mv build/ public/docs/
"""
[[redirects]]
from = "/docs/architecture/*"
to = "/docs/vcluster/introduction/architecture/"
[[redirects]]
from = "/docs/cli/*"
to = "https://www.vcluster.com/docs/vcluster/cli/:splat"
[[redirects]]
from = "/docs/deploying-vclusters/*"
to = "https://www.vcluster.com/docs/vcluster/deploy/:splat"
[[redirects]]
from = "/docs/getting-started/*"
to = "/docs/vcluster/"
[[redirects]]
from = "/docs/networking/*"
to = "https://www.vcluster.com/docs/vcluster/configure/vcluster-yaml/networking/:splat"
[[redirects]]
from = "/docs/security/*"
to = "https://www.vcluster.com/docs/platform/understand/what-are-virtual-clusters#robust-security-and-isolation"
[[redirects]]
from = "/docs/syncer/*"
to = "https://www.vcluster.com/docs/vcluster/0.20.0/introduction/architecture#syncer"
[[redirects]]
from = "/docs/using-vclusters/*"
to = "https://www.vcluster.com/docs/vcluster/introduction/what-are-virtual-clusters#common-use-cases"
[[redirects]]
from = "/docs/config-reference/"
to = "/docs/vcluster/vcluster-yaml/"
[[redirects]]
from = "/docs/storage/"
to = "https://www.vcluster.com/docs/vcluster/category/storage"
[[redirects]]
from = "/docs/what-are-virtual-clusters/"
to = "https://www.vcluster.com/docs/vcluster/introduction/what-are-virtual-clusters"
[[redirects]]
from = "/docs/help&tutorials/*"
to = "https://www.vcluster.com/docs/vcluster/"
[[redirects]]
from = "/docs/deploy/basics/*"
to = "/docs/vcluster/deploy/basics/"