fix(componentCoding): 修复域名拼接缺少斜杠问题

master
钟良源 2 months ago
parent 8156f3e743
commit 7a09df715f

@ -131,7 +131,7 @@ const ComponentCoding = () => {
}
// 域名直接使用当前域名
return `${protocol}//${hostname}`;
return `${protocol}//${hostname}/`;
};
const uri = getCodeServerUri();

Loading…
Cancel
Save