feat: add responsive react workbench

This commit is contained in:
gqt
2026-07-13 11:50:32 +08:00
parent 84e6f1f51a
commit 2c220a0b5f
27 changed files with 5834 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
proxy: {
'/api': 'http://127.0.0.1:8000',
'/health': 'http://127.0.0.1:8000',
},
},
})