added inintla stuff

This commit is contained in:
2025-12-06 19:08:55 -06:00
commit 119d4b2173
36 changed files with 3670 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
}
});