zappyzep/revampdashboard/vite.config.ts
laraproto 1dea7721e5
Some checks failed
Code quality checks / build (23) (push) Successful in 33s
Push code / build (push) Failing after 3s
was the presetup configuration even used, deploy new dashboard stuff
2024-11-02 15:51:07 +02:00

11 lines
234 B
TypeScript

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