diff --git a/examples/official-storybook/package.json b/examples/official-storybook/package.json index 42e625ce5f5..ca4073a1ca9 100644 --- a/examples/official-storybook/package.json +++ b/examples/official-storybook/package.json @@ -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", diff --git a/now.json b/now.json new file mode 100644 index 00000000000..ac5a093ad6f --- /dev/null +++ b/now.json @@ -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" } + ] +}