Small question can we e…

less than 1 minute read

Small question: can we easily create a deployable version of a Storybook instance with Nx? (or even deploy one easily in one step?)

Responses:

We’re relying quite a lot on Storybook to develop our components and wonder if we could deploy the current state somewhere (e.g., netlify or similar) so that our end users could play around with components that we are still busy building / have built to report issues and shorten the feedback loop

nx run your-lib:build-storybook will create a standalone static version of your storybook. you can deploy it anywhere

Updated: