9635bec8bb
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!
24 lines
494 B
JavaScript
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',
|
|
},
|
|
};
|