svgl/vite.config.ts

10 lines
215 B
TypeScript
Raw Normal View History

2023-03-15 05:08:22 +08:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
export default defineConfig({
2023-03-15 19:29:15 +08:00
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
2023-03-15 05:08:22 +08:00
});