mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Update config.js
This commit is contained in:
parent
c8906c8997
commit
f86e255f21
7
app/react-native/src/server/config.js
vendored
7
app/react-native/src/server/config.js
vendored
@ -91,6 +91,13 @@ export default function(configType, baseConfig, projectDir, configDir) {
|
||||
name: 'react-storybook',
|
||||
});
|
||||
|
||||
// Check whether addons.js file exists inside the storybook.
|
||||
const storybookCustomAddonsPath = path.resolve(configDir, 'addons.js');
|
||||
if (fs.existsSync(storybookCustomAddonsPath)) {
|
||||
logger.info('=> Loading custom addons config.');
|
||||
config.entry.manager.unshift(storybookCustomAddonsPath);
|
||||
}
|
||||
|
||||
const defaultConfig = createDefaultWebpackConfig(config);
|
||||
|
||||
// Check whether user has a custom webpack config file and
|
||||
|
Loading…
x
Reference in New Issue
Block a user