diff --git a/examples/official-storybook/package.json b/examples/official-storybook/package.json index d86e47f6455..8d688f67274 100644 --- a/examples/official-storybook/package.json +++ b/examples/official-storybook/package.json @@ -3,7 +3,7 @@ "version": "5.2.0-rc.10", "private": true, "scripts": { - "build-storybook": "build-storybook -c ./", + "build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true build-storybook -c ./", "chromatic": "chromatic test --storybook-addon --exit-zero-on-changes --app-code ab7m45tp9p", "do-image-snapshots": "../../node_modules/.bin/jest --projects=./image-snapshots", "generate-addon-jest-testresults": "jest --config=tests/addon-jest.config.json --json --outputFile=stories/addon-jest.testresults.json", diff --git a/now.json b/now.json index 74526d707e7..a6ab2b2dca8 100644 --- a/now.json +++ b/now.json @@ -13,11 +13,15 @@ { "src": "package.json", "use": "@now/static-build", - "config": { - "distDir": "built-storybooks" - } + "config": { "distDir": "built-storybooks" } } ], + "build": { + "env": { + "DOTENV_DISPLAY_WARNING": "none", + "STORYBOOK_EXAMPLE_APP":"true" + } + }, "routes": [ { "src": "/(.*)", "dest": "/built-storybooks/$1" } ]