feat: update project configuration and enhance project manager functionality

This commit is contained in:
xiongxiao
2026-03-13 17:40:03 +08:00
committed by cnb
parent 1b131b3961
commit 24c8b5f923
8 changed files with 53 additions and 14 deletions

14
src/remote.ts Normal file
View File

@@ -0,0 +1,14 @@
import { app, manager } from './index'
import { RemoteApp } from '@kevisual/remote-app'
app.createRouteList()
const remote = new RemoteApp({
app,
id: 'project-search',
username: 'root'
});
const isConnect = await remote.isConnect();
if (isConnect) {
console.log('Remote app connected successfully', isConnect);
remote.listenProxy();
}