forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
24 lines (24 loc) · 1.84 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
{
"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" } }
],
"routes": [
{ "src": "/docs", "dest": "https://storybook.js.org" },
{ "src": "/(.*)", "dest": "/examples/$1" }
]
}