-
Notifications
You must be signed in to change notification settings - Fork 10
/
netlify.toml
63 lines (51 loc) · 1.26 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
[build.environment]
NODE_VERSION = "18"
PLAYWRIGHT_BROWSERS_PATH = "0"
[build]
publish = "dist"
command = "npm run build"
[[redirects]]
from = "/101-prompt-engineering/*"
to = "/101-prompt-engineering/index.html"
status = 200
[[redirects]]
from = "/102-openai-api/*"
to = "/102-openai-api/index.html"
status = 200
[[redirects]]
from = "/201-langchain-modules/*"
to = "/201-langchain-modules/index.html"
status = 200
[[redirects]]
from = "/202-langchain-chains/*"
to = "/202-langchain-chains/index.html"
status = 200
[[redirects]]
from = "/203-langchain-agents/*"
to = "/203-langchain-agents/index.html"
status = 200
[[redirects]]
from = "/301-langchain-chatdoc/*"
to = "/301-langchain-chatdoc/index.html"
status = 200
[[redirects]]
from = "/302-langserve/*"
to = "/302-langserve/index.html"
status = 200
[[redirects]]
from = "/240106-langchain-status/*"
to = "/240106-langchain-status/index.html"
status = 200
[[redirects]]
from = "/240720-langchain-minio/*"
to = "/240720-langchain-minio/index.html"
status = 200
[[redirects]]
from = "/langchain-biweekly/*"
to = "/langchain-biweekly/index.html"
status = 200
[[redirects]]
from = "/"
to = "https://github.com/webup/agi-talks"
status = 302
force = true