Installing SvelteKit

Adding SvelteKit to root directory.
This commit is contained in:
Rodrigo Pinto 2024-11-12 02:07:39 -03:00
commit 073296a90b
15 changed files with 2174 additions and 5 deletions

10
vite.config.js Normal file
View file

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