99aaef05c1
- Implemented HTTPS/SSL support for OpenClaw gateways in `lan_https` mode. - Added configuration options for SSL certificate verification. - Improved auto-discovery for `lan_https` access mode. - Updated documentation in README and changelog for new features and fixes. - Fixed connection errors related to SSL certificate verification.
12 lines
357 B
JavaScript
12 lines
357 B
JavaScript
(async () => {
|
|
try {
|
|
if (!customElements.get("openclaw-chat-card")) {
|
|
const src = "/openclaw/openclaw-chat-card.js?v=0.1.52";
|
|
console.info("OpenClaw loader importing", src);
|
|
await import(src);
|
|
}
|
|
} catch (err) {
|
|
console.error("OpenClaw: failed to load chat card bundle from /openclaw/openclaw-chat-card.js", err);
|
|
}
|
|
})();
|