storybook/now.json
Norbert de Langen 467036ebd0 CLEANUP
I have no idea how to tell now-build to always add trailing slashes :(
2019-09-11 17:35:59 +02:00

24 lines
407 B
JSON

{
"version": 2,
"name": "monorepo",
"public": true,
"builds": [
{
"src": "package.json",
"use": "@now/static-build",
"config": {
"distDir": "built-storybooks"
}
}
],
"build": {
"env": {
"DOTENV_DISPLAY_WARNING": "none",
"STORYBOOK_EXAMPLE_APP":"true"
}
},
"routes": [
{ "src": "/(.*)", "dest": "/built-storybooks/$1" }
]
}