feat(frontend): add vite react app with interactive 2D table floorplan UI

This commit is contained in:
DanielS
2026-08-19 00:23:47 +02:00
parent 63a9d05002
commit 737686692a
17 changed files with 3782 additions and 0 deletions

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

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