打手端迁移至独立子域名

This commit is contained in:
yml2213
2026-08-16 16:08:38 +08:00
parent 8d07b06d52
commit bc2909d6f2
20 changed files with 173 additions and 52 deletions
+22
View File
@@ -0,0 +1,22 @@
const DEFAULT_WORKER_SITE_URL = 'https://worker.khhao.com'
export const WORKER_SITE_ORIGIN = resolveWorkerSiteOrigin()
export function isWorkerSite() {
const configuredHostname = new URL(WORKER_SITE_ORIGIN).hostname
return (
window.location.hostname === configuredHostname ||
(import.meta.env.DEV && window.location.hostname === 'worker.localhost')
)
}
function resolveWorkerSiteOrigin() {
const configuredUrl = String(import.meta.env.VITE_WORKER_SITE_URL || '').trim()
try {
return new URL(configuredUrl || DEFAULT_WORKER_SITE_URL).origin
} catch {
return DEFAULT_WORKER_SITE_URL
}
}