Adds frontend skeleton. Needs cleanup

This commit is contained in:
2025-02-15 01:26:10 -08:00
parent 9c3a1d84d1
commit bcc8860b30
23 changed files with 468 additions and 17 deletions

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

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