10 lines
382 B
JavaScript
10 lines
382 B
JavaScript
// ai.html 的 CONFIG 由 head 中的 aiConfig chunk 注入(与 login 同一份 config.js)。
|
||
|
||
if (typeof window.__AI_PAGE_BOOTED__ === 'undefined') {
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
if (!window.__AI_PAGE_BOOTED__) {
|
||
console.warn('[ai.js] 内联 boot 未执行,请检查 ai.html 是否为最新构建');
|
||
}
|
||
});
|
||
}
|