From f86e255f21711412b66f5cea68e85542f51a74a2 Mon Sep 17 00:00:00 2001 From: Kevin Colten Date: Sun, 7 Oct 2018 01:15:19 -0500 Subject: [PATCH] Update config.js --- app/react-native/src/server/config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/react-native/src/server/config.js b/app/react-native/src/server/config.js index c182ef76dee..67e2b494dbe 100644 --- a/app/react-native/src/server/config.js +++ b/app/react-native/src/server/config.js @@ -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