Back to Storybook

Vite IncludeStorybookNextjsPlugin

docs/_snippets/vite-includeStorybookNextjsPlugin.md

10.3.6359 B
Original Source
ts
import { defineConfig } from 'vite';
import { storybookNextJsPlugin } from '@storybook/nextjs-vite/vite-plugin';

export default defineConfig({
  // only necessary when not using @storybook/addon-vitest, otherwise the plugin is loaded automatically
  plugins: [storybookNextJsPlugin()],
});