ADD now.sh monorepo example hosting

This commit is contained in:
Norbert de Langen 2019-02-24 00:02:54 +01:00
parent 668a47081d
commit 069e20f166
2 changed files with 11 additions and 0 deletions

View File

@ -3,6 +3,7 @@
"version": "5.0.0-beta.3",
"private": true,
"scripts": {
"now-build": "yarn run build-storybook",
"build-storybook": "build-storybook -c ./ -s built-storybooks",
"chromatic": "chromatic test --storybook-addon --exit-zero-on-changes --app-code ab7m45tp9p",
"do-image-snapshots": "../../node_modules/.bin/jest --projects=./image-snapshots",

10
now.json Normal file
View File

@ -0,0 +1,10 @@
{
"version": 2,
"name": "monorepo",
"builds": [
{ "src": "examples/official-storybook/package.json", "use": "@now/static-build", "config": { "distDir": "storybook-static" } }
],
"routes": [
{ "src": "/(.*)", "dest": "/examples/$1" }
]
}