private_facts/vite.config.js
Rodrigo Pinto 073296a90b Installing SvelteKit
Adding SvelteKit to root directory.
2024-11-12 02:07:39 -03:00

10 lines
211 B
JavaScript

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