-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxies.json
38 lines (38 loc) · 1.18 KB
/
proxies.json
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
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"StaticImages": {
"matchCondition": {
"route": "static/images/{*file}"
},
"backendUri": "https://toldreactbible.blob.core.windows.net/images/{file}"
},
"Static": {
"matchCondition": {
"route": "static/{*file}"
},
"backendUri": "https://told-react-bible.azurewebsites.net/fun-static?file={file}"
},
"App": {
"matchCondition": {
"route": "app/{*file}"
},
"backendUri": "https://told-react-bible.azurewebsites.net/fun-static?file=app/"
},
"CustomReactRoute": {
"matchCondition": {
"route": "custom/{*file}"
},
"backendUri": "https://told-react-bible.azurewebsites.net/fun-static?file=app/"
},
"Root": {
"matchCondition": {
"route": "",
"methods": [
"GET"
]
},
"backendUri": "https://told-react-bible.azurewebsites.net/fun-static?file=app/"
}
}
}