Update config.js

This commit is contained in:
Kevin Colten 2018-10-07 01:15:19 -05:00 committed by GitHub
parent c8906c8997
commit f86e255f21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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