forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserve-test.json
63 lines (63 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"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__/webchat-es5.js",
"destination": "packages/bundle/dist/webchat-es5.js"
},
{
"source": "/test-harness.js",
"destination": "packages/test/harness/dist/test-harness.js"
},
{
"source": "/test-harness.js.map",
"destination": "packages/test/harness/dist/test-harness.js.map"
},
{
"source": "/test-page-object.js",
"destination": "packages/test/page-object/dist/test-page-object.js"
},
{
"source": "/test-page-object.js.map",
"destination": "packages/test/page-object/dist/test-page-object.js.map"
},
{
"source": "/:page.css",
"destination": "__tests__/html/:page.css"
},
{
"source": "/:page",
"destination": "__tests__/html/:page.html"
},
{
"source": "/",
"destination": "__tests__/html"
}
],
"unlisted": [
"/__image_snapshots__",
"/**/.git*",
"/**/*.ico",
"/**/*.js",
"/**/*.json",
"/**/*.map"
]
}