mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
All of Node, Webpack and Vite can `import('<pkg>/preview')` etc, as long as the `exports` map is there and setup like so. If the `exports` map is not there, then they can import `node_modules/<pkg>/preview.js` instead. The issue occurred when an export map existed but Vite tried to import a path that wasn't defined in there.
Storybook Addon Backgrounds
Storybook Addon Backgrounds can be used to change background colors inside the preview in Storybook.
Installation
Backgrounds is part of essentials and so is installed in all new Storybooks by default. If you need to add it to your Storybook, you can run:
npm i -D @storybook/addon-backgrounds
Configuration
Then, add following content to .storybook/main.js
:
module.exports = {
addons: ['@storybook/addon-backgrounds'],
};
Usage
The usage is documented in the documentation.