mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
import { addParameters } from '@storybook/ember';
|
|
import { setJSONDoc } from '@storybook/addon-docs/ember';
|
|
// eslint-disable-next-line import/no-unresolved
|
|
import docJson from '../ember-output/storybook-docgen/index.json';
|
|
|
|
setJSONDoc(docJson);
|
|
addParameters({
|
|
options: {
|
|
showRoots: true,
|
|
},
|
|
});
|