cellpose-web/frontend/api.js

11 lines
314 B
JavaScript
Raw Normal View History

const config = {
2025-10-22 14:42:14 +00:00
/* 请根据需求修改下列IP和端口 */
server: {
2025-10-22 14:42:14 +00:00
protocol: 'http', // 网络协议
host: '192.168.193.141', // 主机IP
port: 5000 // 后端运行端口
}
};
2025-10-22 14:42:14 +00:00
/* 生成API链接 */
const API_BASE = `${config.server.protocol}://${config.server.host}:${config.server.port}/`;