storybook/lib/manager-webpack4
Tim van der Horst 5d5bf30eb7
Replaced process.env override in DefinePlugin config to individual key definitions
Included an empty fallback for `process.env.XSTORYBOOK_EXAMPLE_APP` for the variable used in `lib/ui/src/index.tsx`
2021-08-27 17:00:52 +10:00
..

Manager-Webpack4

Builder implemented with webpack4 and webpack4-compatible loaders/plugins/config, used by @storybook/core-server to build the manager UI.

webpack4 is the default, so no configuration is necessary to use it. However, if you wan to explicitly configure your Storybook to run webpack4, install it as a dev dependency and then update your .storybook/main.js configuration.

module.exports = {
  core: {
    builder: 'webpack4',
  },
};