update: 2026-03-28 20:59

This commit is contained in:
2026-03-28 20:59:52 +08:00
parent e21d58e603
commit 1c81d4e6ea
611 changed files with 27847 additions and 65061 deletions

View File

@@ -0,0 +1,13 @@
/* 由 SPA 在 iframe URL 上附加 ?sixty_base=encodeURIComponent(baseUrl);无参数时默认萌芽节点 */
(function () {
var fallback = 'https://60s.api.shumengya.top';
var base = fallback;
try {
var q = new URLSearchParams(window.location.search).get('sixty_base');
if (q) {
base = decodeURIComponent(q);
}
} catch (e) {}
base = String(base).replace(/\/+$/, '');
window.__SIXTY_API_BASE__ = base || fallback;
})();