Use Svelte for frontend

This commit is contained in:
Michał Gdula 2024-04-15 10:38:35 +01:00
parent 59a15f0957
commit 56bd273711
16 changed files with 1301 additions and 9 deletions

7
front/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()],
})