2023-11-03 05:14:51 -07:00
|
|
|
import { dirname, join } from 'path';
|
2023-07-28 04:55:16 -07:00
|
|
|
import type { StorybookConfig } from '@storybook/vue3-vite';
|
|
|
|
|
2023-11-03 05:14:51 -07:00
|
|
|
function getAbsolutePath(value: string): string {
|
|
|
|
return dirname(require.resolve(join(value, 'package.json'))).toString();
|
|
|
|
}
|
|
|
|
|
2023-07-28 04:55:16 -07:00
|
|
|
const config: StorybookConfig = {
|
|
|
|
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
|
|
|
|
addons: [
|
2023-11-03 05:14:51 -07:00
|
|
|
getAbsolutePath('@storybook/addon-links'),
|
|
|
|
getAbsolutePath('@storybook/addon-essentials'),
|
|
|
|
getAbsolutePath('@storybook/addon-a11y'),
|
|
|
|
getAbsolutePath('storybook-dark-mode'),
|
2023-07-28 04:55:16 -07:00
|
|
|
],
|
|
|
|
staticDirs: ['../public'],
|
|
|
|
framework: {
|
2023-11-03 05:14:51 -07:00
|
|
|
name: getAbsolutePath('@storybook/vue3-vite') as '@storybook/vue3-vite',
|
2023-07-28 04:55:16 -07:00
|
|
|
options: {},
|
|
|
|
},
|
|
|
|
core: {
|
|
|
|
disableTelemetry: true,
|
|
|
|
},
|
|
|
|
docs: {
|
|
|
|
autodocs: true,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|