feat: scaffold Vue 3 + TypeScript frontend with typed stream event contract

This commit is contained in:
Justin Visser 2026-08-09 20:59:12 +02:00
parent 1f40d064ad
commit ef9e102b05
19 changed files with 3147 additions and 0 deletions

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

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