fixed readme

This commit is contained in:
2026-04-27 22:12:43 -05:00
commit 60b19146e6
13 changed files with 3813 additions and 0 deletions

10
frontend/vite.config.js 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: 3002, // choose your port
strictPort: true // fail if port is in use
}
});