mirror of https://github.com/buster-so/buster.git
17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
|
import type { StorybookConfig } from '@storybook/nextjs';
|
||
|
|
||
|
const config: StorybookConfig = {
|
||
|
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
|
||
|
addons: [
|
||
|
'@storybook/addon-essentials',
|
||
|
'@chromatic-com/storybook',
|
||
|
'@storybook/addon-interactions'
|
||
|
],
|
||
|
framework: {
|
||
|
name: '@storybook/nextjs',
|
||
|
options: {}
|
||
|
},
|
||
|
staticDirs: ['../public']
|
||
|
};
|
||
|
export default config;
|