mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +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:
|
Use this hook to a custom webpack.config. This will generate a decorator call in every story:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
module.exports = function (baseConfig, env, defaultConfig) {
|
module.exports = function ({ config }) {
|
||||||
defaultConfig.module.rules.push({
|
config.module.rules.push({
|
||||||
test: /\.stories\.jsx?$/,
|
test: /\.stories\.jsx?$/,
|
||||||
loaders: [require.resolve('@storybook/addon-storysource/loader')],
|
loaders: [require.resolve('@storybook/addon-storysource/loader')],
|
||||||
enforce: 'pre',
|
enforce: 'pre',
|
||||||
});
|
});
|
||||||
|
|
||||||
return defaultConfig;
|
return config;
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user