leganto-web/vite.config.ts
Louis Hollingworth 44e3135ff8
Added basic svelte project
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-29 14:32:01 +01:00

10 lines
210 B
TypeScript

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