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