mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:41:05 +08:00
13 lines
334 B
Plaintext
13 lines
334 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
export function webpackFinal(config, { configDir }) {
|
|
if (!isReactScriptsInstalled()) {
|
|
logger.info('=> Using base config because react-scripts is not installed.');
|
|
return config;
|
|
}
|
|
|
|
logger.info('=> Loading create-react-app config.');
|
|
return applyCRAWebpackConfig(config, configDir);
|
|
}
|
|
``` |