mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
13 lines
256 B
Plaintext
13 lines
256 B
Plaintext
```ts
|
|
// .storybook/main.ts
|
|
import { StorybookConfig } from '@storybook/nextjs';
|
|
|
|
const config: StorybookConfig = {
|
|
// ...
|
|
framework: '@storybook/sveltekit', // 👈 Add this
|
|
// svelteOptions: { ... }, 👈 Remove this
|
|
};
|
|
|
|
export default config;
|
|
```
|