buildout full stack functionality

This commit is contained in:
KS Jannette
2026-07-30 18:55:28 -04:00
parent f5ded658b8
commit 04a2910af5
22 changed files with 3759 additions and 3 deletions

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

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
host: 'localhost',
},
})