initial commit with first running version

This commit is contained in:
Patryk Hegenberg 2024-11-25 18:14:54 +01:00
commit 326895fb51
25 changed files with 2349 additions and 0 deletions

7
frontend/vite.config.js Normal file
View file

@ -0,0 +1,7 @@
import {defineConfig} from 'vite'
import {svelte} from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()]
})