mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
15 lines
509 B
JavaScript
15 lines
509 B
JavaScript
/* eslint-disable import/no-extraneous-dependencies, import/no-unresolved, import/extensions */
|
|
|
|
import { configure } from '@storybook/angular';
|
|
|
|
function loadStories() {
|
|
// put welcome screen at the top of the list so it's the first one displayed
|
|
require('../src/stories');
|
|
|
|
// automatically import all story ts files that end with *.stories.ts
|
|
const req = require.context('../src/stories', true, /\.stories\.ts$/)
|
|
req.keys().forEach((filename) => req(filename))
|
|
}
|
|
|
|
configure(loadStories, module);
|