open-nomad/ui/.storybook/main.js
Michael Lange 9635bec8bb Free your mind of the babel and the packed web
ember-cli-storybook and storybook itself has progressed to the point
where the DIY configs aren't necessary. It's all swept under the
`framework: '@storybook/ember'` config in main.js. Yay!
2023-06-15 12:40:03 -07:00

24 lines
494 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
/* eslint-env node */
module.exports = {
framework: '@storybook/ember',
addons: [
'@storybook/addon-docs',
'@storybook/addon-storysource',
'@storybook/addon-knobs',
'@storybook/addon-viewport',
],
stories: [
'../stories/theme/*.stories.js',
'../stories/components/*.stories.js',
'../stories/charts/*.stories.js',
],
core: {
builder: '@storybook/builder-webpack4',
},
};