feat: use non https debug host

This commit is contained in:
DIYgod 2025-01-10 17:59:51 +08:00
parent fb00346ec8
commit 61d3ed49b8
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
const debugHostInSessionStorage = sessionStorage.getItem("debug-host")
const host = debugHost || debugHostInSessionStorage || "https://localhost:2233"
const host = debugHost || debugHostInSessionStorage || "http://localhost:2233"
if (debugHost) {
sessionStorage.setItem("debug-host", debugHost)
}