mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
- Replaced deprecated `@storybook/addon-styling` with `@storybook/addon-themes` - Removed deprecated `@storybook/addon-essentials` and `@storybook/addon-interactions` - Upgraded `chromatic`, although it's seemingly unused anywhere - Upgraded `@types/node` to match the ones in the guide and website Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
14 lines
367 B
TypeScript
14 lines
367 B
TypeScript
import type { StorybookConfig } from '@storybook/react-vite';
|
|
|
|
export default {
|
|
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx)'],
|
|
addons: ['@storybook/addon-links', '@storybook/addon-themes', '@storybook/addon-docs'],
|
|
core: {
|
|
builder: '@storybook/builder-vite',
|
|
},
|
|
framework: {
|
|
name: '@storybook/react-vite',
|
|
options: {},
|
|
},
|
|
} satisfies StorybookConfig;
|