1
0
resumarkdown/vite.config.ts

10 lines
217 B
TypeScript
Raw Normal View History

2024-10-10 21:02:54 -05:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}'],
},
});