Initial: DroidFleet Visor — Android Cloud Hypervisor

This commit is contained in:
2026-08-11 04:36:15 +00:00
parent ea8a248cb8
commit fd53e41bf2
3 changed files with 91 additions and 14 deletions

12
vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
proxy: {
'/api': 'http://localhost:3000'
}
}
})