test-web/client/vite.config.ts
Chris Dill 49dbf6e7a9
All checks were successful
Build / build (push) Successful in 1m33s
Initial commit
2025-02-25 19:31:32 +00:00

10 lines
217 B
TypeScript
Executable File

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