feat(frontend): add files
build / Go-Build (push) Failing after 15s

This commit is contained in:
2026-06-24 11:58:59 +02:00
parent 8f59f80eb2
commit d1d49ecc49
39 changed files with 3607 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:4000',
changeOrigin: true,
},
'/auth': {
target: 'http://localhost:4000',
changeOrigin: true,
},
'/admin': {
target: 'http://localhost:4000',
changeOrigin: true,
}
}
}
})