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