-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #321 from emulsify-ds/feat-main-storyboook-overrides
feat: add default main.js to config that passes an empty object
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Pass an empty configOverrides by default. | ||
const configOverrides = {}; | ||
|
||
// Uncomment the following section to override the default Emulsify Core configuration. | ||
// Doing so is a complete override so no configuration from Emulsify Core's main.js will be inherited. | ||
// See https://storybook.js.org/docs/7/configure for details. | ||
// const configOverrides = { | ||
// stories: [ | ||
// '../../../../components/**/*.stories.@(js|jsx|ts|tsx)', | ||
// ], | ||
// addons: [ | ||
// '../../../@storybook/addon-a11y', | ||
// '../../../@storybook/addon-links', | ||
// '../../../@storybook/addon-essentials', | ||
// '../../../@storybook/addon-themes', | ||
// '../../../@storybook/addon-styling-webpack' | ||
// ], | ||
// core: { | ||
// builder: 'webpack5', | ||
// }, | ||
// framework: { | ||
// name: '@storybook/html-webpack5', | ||
// options: {}, | ||
// }, | ||
// docs: { | ||
// autodocs: true, | ||
// }, | ||
// }; | ||
|
||
module.exports = {configOverrides}; |