mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
19 lines
474 B
Plaintext
19 lines
474 B
Plaintext
```ts
|
|
// .storybook/main.ts
|
|
|
|
import type { StorybookViteConfig } from '@storybook/builder-vite';
|
|
|
|
const config: StorybookViteConfig = {
|
|
stories: ['../stories/**/*.stories.mdx', '../stories/**/*.stories.@(js|jsx|ts|tsx)'],
|
|
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
|
|
core: {
|
|
builder: '@storybook/builder-vite',
|
|
},
|
|
async viteFinal(config, options) {
|
|
// Add your configuration here
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default config;
|
|
``` |