🚀 Initial sveltekit app

This commit is contained in:
Rune Harlyk
2024-03-28 01:04:52 +01:00
committed by Rune Harlyk
parent 23806e366b
commit 0acbb4c83a
85 changed files with 6096 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
import Icons from 'unplugin-icons/vite';
import viteLittleFS from './vite-plugin-littlefs';
export default defineConfig({
plugins: [
sveltekit(),
Icons({
compiler: 'svelte'
}),
viteLittleFS()
],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
});