mirror of
https://github.com/mantinedev/next-app-template.git
synced 2025-11-09 20:12:02 +10:00
17 lines
408 B
TypeScript
17 lines
408 B
TypeScript
import type { StorybookConfig } from '@storybook/nextjs';
|
|
|
|
const config: StorybookConfig = {
|
|
core: {
|
|
disableWhatsNewNotifications: true,
|
|
disableTelemetry: true,
|
|
enableCrashReports: false,
|
|
},
|
|
stories: ['../components/**/*.(stories|story).@(js|jsx|ts|tsx)'],
|
|
addons: ['@storybook/addon-themes'],
|
|
framework: {
|
|
name: '@storybook/nextjs',
|
|
options: {},
|
|
},
|
|
};
|
|
export default config;
|