mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
storysource: update documentation for v5
This commit is contained in:
parent
f2b625bab0
commit
2a67ea4f8e
@ -23,14 +23,14 @@ import '@storybook/addon-storysource/register';
|
||||
Use this hook to a custom webpack.config. This will generate a decorator call in every story:
|
||||
|
||||
```js
|
||||
module.exports = function (baseConfig, env, defaultConfig) {
|
||||
defaultConfig.module.rules.push({
|
||||
module.exports = function ({ config }) {
|
||||
config.module.rules.push({
|
||||
test: /\.stories\.jsx?$/,
|
||||
loaders: [require.resolve('@storybook/addon-storysource/loader')],
|
||||
enforce: 'pre',
|
||||
});
|
||||
|
||||
return defaultConfig;
|
||||
return config;
|
||||
};
|
||||
```
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user