2018-02-20 15:18:51 +02:00
..
2018-02-20 15:18:51 +02:00
2018-02-18 17:43:47 +03:00

Storybook Storysource Addon

This addon is used to show stories source in the addon panel.

Getting Started

First, install the addon

npm install -D @storybook/addon-storysource

Add this line to your addons.js file

import '@storybook/addon-storysource/register';

Use this hook to a custom webpack.config. This will generate a decorator call in every story:

module.exports = {
  module: {
    rules: [
      {
        test: /\.stories\.jsx?$/,
        loaders: [require.resolve('@storybook/addon-storysource/loader')],
        enforce: 'pre',
      },
    ],
  },
};