mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
18 lines
386 B
JavaScript
18 lines
386 B
JavaScript
/** @type { import('@storybook/sveltekit').StorybookConfig } */
|
|
const config = {
|
|
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
|
|
addons: [
|
|
'@storybook/addon-links',
|
|
'@storybook/addon-essentials',
|
|
'@storybook/addon-interactions'
|
|
],
|
|
framework: {
|
|
name: '@storybook/sveltekit',
|
|
options: {}
|
|
},
|
|
docs: {
|
|
autodocs: 'tag'
|
|
}
|
|
};
|
|
export default config;
|