zappyzep/revampdashboard/vite.config.ts
laraproto 4c8f925d94
All checks were successful
Code quality checks / build (23) (push) Successful in 34s
Push code / build (push) Successful in 1m20s
meow
2024-11-02 20:29:00 +02:00

19 lines
311 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: '..',
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler'
}
}
}
});