fix shit
Some checks failed
Deployment / Install (push) Failing after 55s

This commit is contained in:
Benjamin Palko 2025-04-30 16:59:55 -04:00
parent cee5001890
commit 9dfbdcc554
7 changed files with 48 additions and 44 deletions

View file

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