P2 of HJ-FE-DS-001 金样板。后续 P3 组件库 / P4 Feed+Create 落地。 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
25 lines
929 B
HTML
25 lines
929 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
<title>造梦AI</title>
|
|
<!-- 防闪烁(FOUC):首屏渲染前按已持久化外观设 <html data-theme/lang>,避免暗→亮闪烁 -->
|
|
<script>
|
|
(function () {
|
|
try {
|
|
var t = localStorage.getItem('studio.theme');
|
|
if (t === 'light' || t === 'dim') document.documentElement.setAttribute('data-theme', t);
|
|
var l = localStorage.getItem('studio.lang');
|
|
if (l === 'en-US' || l === 'zh-CN') document.documentElement.setAttribute('lang', l);
|
|
} catch (e) { /* 隐私模式忽略 */ }
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|