Created SvelteKit Application as Base

This commit is contained in:
2023-08-29 20:48:14 +01:00
parent 7d00e51c6b
commit aebdce25d2
20 changed files with 1962 additions and 241 deletions

6
vite.config.ts Normal file
View File

@ -0,0 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});