forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
81 lines (81 loc) · 2.26 KB
/
now.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"version": 2,
"name": "monorepo",
"public": true,
"builds": [
{
"src": "examples/angular-cli/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/cra-kitchen-sink/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/cra-ts-kitchen-sink/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/ember-cli/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/html-kitchen-sink/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/marko-cli/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/mithril-kitchen-sink/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/official-storybook/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/polymer-cli/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/preact-kitchen-sink/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/riot-kitchen-sink/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/svelte-kitchen-sink/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/vue-kitchen-sink/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
},
{
"src": "examples/cra-react15/package.json",
"use": "@now/static-build",
"config": { "distDir": "storybook-static" }
}
],
"routes": [
{ "src": "/docs", "dest": "https://storybook.js.org" },
{ "src": "/(.*)", "dest": "/examples/$1" }
]
}