feat: initialize resume agent with OfferPai sync

This commit is contained in:
Codex
2026-08-05 20:20:18 +08:00
commit 61ec750031
197 changed files with 33291 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, '.', '')
return {
plugins: [vue()],
server: {
host: '0.0.0.0',
port: 5173,
proxy: {
'/ai-api': {
target: env.VITE_API_PROXY_TARGET || 'http://localhost:8000',
changeOrigin: true,
},
},
},
}
})