-
Notifications
You must be signed in to change notification settings - Fork 14
/
netlify.toml
87 lines (73 loc) · 1.8 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
[build.environment]
NODE_VERSION = "18"
HUGO_VERSION = "0.88.1"
HUGO_ENV = "production"
[[redirects]]
from = "https://pytorch-ignite.netlify.app/*"
to = "https://pytorch-ignite.ai/:splat"
status = 301
force = true
[[redirects]]
from = "/posts/*"
to = "/blog/:splat"
status = 301
force = true
[[redirects]]
from = "/how-to-guides/installation/"
to = "/how-to-guides/01-installation/"
status = 301
force = true
[[redirects]]
from = "/how-to-guides/time-profiling/"
to = "/how-to-guides/03-time-profiling/"
status = 301
force = true
[[redirects]]
from = "/how-to-guides/fastai-lr-finder/"
to = "/how-to-guides/04-fastai-lr-finder/"
status = 301
force = true
[[redirects]]
from = "/how-to-guides/gradient-accumulation/"
to = "/how-to-guides/05-gradient-accumulation/"
status = 301
force = true
[[redirects]]
from = "/how-to-guides/data-iterator/"
to = "/how-to-guides/06-data-iterator/"
status = 301
force = true
[[redirects]]
from = "/community/"
to = "/about/community/"
status = 301
force = true
[[redirects]]
from = "/tutorials/getting-started/"
to = "/tutorials/beginner/01-getting-started/"
status = 301
force = true
[[redirects]]
from = "/tutorials/cifar10-distributed/"
to = "/tutorials/intermediate/01-cifar10-distributed/"
status = 301
force = true
[[redirects]]
from = "/tutorials/transformers-text-classification/"
to = "/tutorials/beginner/02-transformers-text-classification/"
status = 301
force = true
[[redirects]]
from = "/chat"
to = "https://discord.gg/djZtm3EmKj"
status = 301
force = true
[[redirects]]
from = "/playground"
to = "https://colab.research.google.com/github/pytorch-ignite/playground/blob/main/index.ipynb"
status = 301
force = true
[[redirects]]
from = "/*"
to = "/404.html"
status = 404