mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:31:05 +08:00
20 lines
608 B
TypeScript
20 lines
608 B
TypeScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
import { sep, posix } from 'path';
|
|
import { vitestCommonConfig } from '../../vitest.workspace';
|
|
|
|
export default defineConfig(
|
|
mergeConfig(vitestCommonConfig, {
|
|
test: {
|
|
environment: 'jsdom',
|
|
name: __dirname.split(sep).slice(-2).join(posix.sep),
|
|
},
|
|
plugins: [
|
|
// eslint-disable-next-line import/no-unresolved
|
|
import('@sveltejs/vite-plugin-svelte').then(({ svelte, vitePreprocess }) =>
|
|
svelte({ preprocess: vitePreprocess() })
|
|
),
|
|
],
|
|
})
|
|
);
|