-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathxs-app.json
38 lines (38 loc) · 1001 Bytes
/
xs-app.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
{
"welcomeFile": "/ui/index.html",
"routes": [
{
"source": "^/broker/(.*)$",
"target": "$1",
"destination": "broker"
},
{
"source": "^/ui/(.*)$",
"target": "$1",
"destination": "ui",
"scope": ["$XSAPPNAME.Display", "$XSAPPNAME.Backend"]
},
{
"source": "^/backend/(.*)$",
"target": "$1",
"destination": "ef-service",
"csrfProtection": false,
"scope": ["$XSAPPNAME.Backend"]
},
{
"source": "^/css/(.*)$",
"destination": "ui",
"authenticationType": "none"
},
{
"source": "^/js/(.*)$",
"destination": "ui",
"authenticationType": "none"
},
{
"source": "^/img/(.*)$",
"destination": "ui",
"authenticationType": "none"
}
]
}