-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathnetlify.toml
62 lines (51 loc) · 1.19 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]
publish = "public/"
[functions]
directory = "functions"
[[redirects]]
from = "/cors/cdnbeatsaver/*"
to = "https://cdn.beatsaver.com/:splat"
status = 200
force = true
headers = {X-From = "Netlify"}
[[redirects]]
from = "/cors/cdn-assets-bl/*"
to = "https://cdn.assets.beatleader.xyz/:splat"
status = 200
force = true
headers = {X-From = "Netlify"}
[[redirects]]
from = "/cors/steamcommunity/*"
to = "https://steamcommunity.com/:splat"
status = 200
force = true
headers = {X-From = "Netlify"}
[[redirects]]
from = "/cors/steamapi/*"
to = "https://api.steampowered.com/:splat"
status = 200
force = true
headers = {X-From = "Netlify"}
[[redirects]]
from = "/cors/blapi/*"
to = "https://api.beatleader.xyz/:splat"
status = 200
force = true
headers = {X-From = "Netlify"}
[[redirects]]
from = '/build/*'
to = '/build/:splat'
status = 200
[[redirects]]
from = '/assets/*'
to = '/assets/:splat'
status = 200
[[redirects]]
from = '/robots.txt'
to = '/robots.txt'
status = 200
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
force = true