mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
```ts
|
|
// .storybook/main.ts
|
|
import { StorybookConfig } from '@storybook/web-components-vite';
|
|
|
|
const config: StorybookConfig = {
|
|
// ...
|
|
framework: '@storybook/web-components-vite', // 👈 Add this
|
|
};
|
|
|
|
export default config;
|
|
```
|