forked from m3db/m3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netlify.toml
54 lines (42 loc) · 1.33 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]
# Directory to change to before starting a build.
# This is where we will look for package.json/.nvmrc/etc.
base = "site/"
# Directory that contains the deploy-ready HTML files and assets generated by
# the build. This is relative to the base directory if one has been set, or the
# root directory if a base has not been set. This sample publishes the
# directory located at the absolute path "root/project/build-output"
publish = "/site/public/"
command = "make site-build -C ../"
HUGO_VERSION = "0.76.5"
[[redirects]]
from = "/misc/writing_docs/"
to = "/docs"
[[redirects]]
from = "https://m3metrics.io/*"
to = "https://m3db.io/:splat"
[[redirects]]
from = "https://m3db.netlify.com/*"
to = "https://m3db.io/:splat"
[[redirects]]
from = "https://docs.m3db.io/*"
to = "https://m3db.io/docs/:splat"
[[redirects]]
from = "/docs/how_to/single_node"
to = "/docs/quickstart"
[[redirects]]
from="/docs/how_to/kubernetes"
to="/docs/cluster/kubernetes_cluster"
[[redirects]]
from="/docs/quickstart/kubernetes"
to="/docs/cluster/kubernetes_cluster"
[[redirects]]
from="/docs/how_to/aggregator"
to="/docs/m3aggregator/setup"
[[redirects]]
from="/docs/how_to/query"
to="/docs/m3query/setup"
# TODO: Fix this with new content type
[[redirects]]
from = "/talks"
to = "/docs/overview/media"