Tom Coleman 7eae837fcc Revert changes to exports fields of addons/renderers
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.
2022-08-30 14:46:23 +10:00
..
2022-07-21 11:24:07 +02:00
2022-07-21 11:24:07 +02:00
fix
2022-07-26 09:40:04 +02:00
2022-07-28 20:19:28 +01:00
2022-07-21 11:24:07 +02:00

Storybook Addon Backgrounds

Storybook Addon Backgrounds can be used to change background colors inside the preview in Storybook.

Framework Support

React Storybook Screenshot

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.