forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 2
/
serve-test.json
47 lines (47 loc) · 1.01 KB
/
serve-test.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
39
40
41
42
43
44
45
46
47
{
"headers": [
{
"source": "*",
"headers": [
{
"key": "Cache-Control",
"value": "no-cache no-store no-transform"
}
]
}
],
"rewrites": [
{
"source": "/assets/:filename",
"destination": "__tests__/html/assets/:filename"
},
{
"source": "/assets/transcripts/:filename",
"destination": "__tests__/html/assets/transcripts/:filename"
},
{
"source": "/__dist__/testharness.js",
"destination": "packages/testharness/dist/testharness.js"
},
{
"source": "/__dist__/webchat-es5.js",
"destination": "packages/bundle/dist/webchat-es5.js"
},
{
"source": "/:page.asset.js",
"destination": "__tests__/html/:page.asset.js"
},
{
"source": "/:page.css",
"destination": "__tests__/html/:page.css"
},
{
"source": "/:page",
"destination": "__tests__/html/:page.html"
},
{
"source": "/",
"destination": "__tests__/html"
}
]
}