meow
All checks were successful
Code quality checks / build (23) (push) Successful in 34s
Push code / build (push) Successful in 1m20s

This commit is contained in:
Lara 2024-11-02 20:29:00 +02:00
parent b52ac3409b
commit 4c8f925d94
Signed by: laratheprotogen
GPG key ID: 5C0296EB3165F98B
11 changed files with 644 additions and 44 deletions

View file

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