zappyzep/revampdashboard/vite.config.ts

20 lines
311 B
TypeScript
Raw Permalink Normal View History

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