Skip to content

Commit

Permalink
Merge pull request #321 from emulsify-ds/feat-main-storyboook-overrides
Browse files Browse the repository at this point in the history
feat: add default main.js to config that passes an empty object
  • Loading branch information
callinmullaney authored Jul 22, 2024
2 parents 281fa37 + 5bf4ef2 commit 200d842
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions whisk/config/emulsify-core/storybook/main.js
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};

0 comments on commit 200d842

Please sign in to comment.