Initial commit

This commit is contained in:
Djuri 2023-11-17 01:05:35 +01:00
commit 96d609a89e
34 changed files with 4978 additions and 0 deletions

9
vite.config.ts Normal file
View file

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