First Commit

This commit is contained in:
2026-03-10 22:29:56 -04:00
commit c4977e4b5e
22 changed files with 5947 additions and 0 deletions

16
vite.config.js Normal file
View File

@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
allowedHosts: ['lb.salesfam.cloud'],
proxy: {
'/api': {
target: 'http://localhost:3001',
changeOrigin: true,
},
},
},
})