mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:31:05 +08:00
15 lines
412 B
TypeScript
15 lines
412 B
TypeScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
|
|
import { vitestCommonConfig } from '../../vitest.workspace';
|
|
|
|
export default defineConfig(
|
|
mergeConfig(vitestCommonConfig, {
|
|
plugins: [
|
|
import('@sveltejs/vite-plugin-svelte').then(({ svelte, vitePreprocess }) =>
|
|
svelte({ preprocess: vitePreprocess() })
|
|
),
|
|
],
|
|
})
|
|
);
|