Inital Work, web server broke again, trying to get scale and rotation setup

This commit is contained in:
2025-10-17 09:08:31 +11:00
commit 443e6177ca
16 changed files with 842 additions and 0 deletions

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

@@ -0,0 +1,8 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// @ts-ignore no types needed for this import-less usage
export default defineConfig({
plugins: [react()],
server: { port: 5173, host: true },
});