Back to Storybook

Svelte Vite Framework Options

docs/_snippets/svelte-vite-framework-options.md

10.3.6489 B
Original Source
js
export default {
  // ...
  framework: {
    name: '@storybook/svelte-vite',
    options: {
      // ...
    },
  },
};
ts
import type { StorybookConfig } from '@storybook/svelte-vite';

const config: StorybookConfig = {
  // ...
  framework: {
    name: '@storybook/svelte-vite',
    options: {
      // ...
    },
  },
};

export default config;