FIX documentation for writing addons to reference .storybook/preview.js

This commit is contained in:
Norbert de Langen 2019-11-27 16:35:28 +01:00
parent 9958b83bdc
commit d36d3f8d21

View File

@ -104,7 +104,7 @@ module.exports = {
};
```
Alternatively you can import all your stories in `preview.js`:
Alternatively you can import all your stories in `.storybook/preview.js`:
```js
import { configure } from '@storybook/react';
@ -112,7 +112,7 @@ import { configure } from '@storybook/react';
configure(require.context('../src/components', true, /\.stories\.js$/), module);
```
> NOTE: The `configure` function should be called only once in `preview.js`.
> NOTE: The `configure` function should be called only once in `.storybook/preview.js`.
The `configure` function accepts: