mirror of
https://github.com/johndoe6345789/postgres.git
synced 2026-04-24 13:55:00 +00:00
27 lines
488 B
TypeScript
27 lines
488 B
TypeScript
import type { StorybookConfig } from '@storybook/nextjs-vite';
|
|
|
|
const config: StorybookConfig = {
|
|
stories: [
|
|
'../src/**/*.mdx',
|
|
'../src/**/*.stories.@(js|jsx|mjs|ts|tsx)',
|
|
],
|
|
addons: [
|
|
'@storybook/addon-docs',
|
|
'@storybook/addon-a11y',
|
|
],
|
|
framework: {
|
|
name: '@storybook/nextjs-vite',
|
|
options: {},
|
|
},
|
|
staticDirs: [
|
|
'../public',
|
|
],
|
|
features: {
|
|
experimentalRSC: true,
|
|
},
|
|
core: {
|
|
disableTelemetry: true,
|
|
},
|
|
};
|
|
export default config;
|