feat: 完善SSH客户端功能 - 移除窗口菜单栏 - 修复终端布局灰色区域 - AI Agent添加API Key配置(支持OpenAI/DeepSeek等) - 监控面板新增进程监控(支持按CPU/内存排序) - 修复.gitignore并移除node_modules跟踪

This commit is contained in:
Your Name
2026-07-28 22:10:19 +08:00
parent edf4d743cb
commit 57df653738
472 changed files with 7932 additions and 15699 deletions
+12
View File
@@ -4,6 +4,18 @@ import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
base: './',
esbuild: {
loader: 'jsx',
include: /src\/.*\.js$/,
exclude: [],
},
optimizeDeps: {
esbuildOptions: {
loader: {
'.js': 'jsx',
},
},
},
build: {
outDir: 'dist'
},