- init unibest v4.4.0 base template - tabbar: 4 tabs (打卡/进度/测算/持仓) with carbon icons - pages/checkin: daily checklist, streak counter, monthly rate - pages/progress: asset snapshot, progress bar to 71万 target - pages/calculator, holdings: placeholder pages (stage 2) - store/checkin.ts + store/progress.ts with pinia persist - vite: host 0.0.0.0 for WSL2→Windows browser access Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
817 B
HTML
27 lines
817 B
HTML
<!doctype html>
|
|
<html build-time="%BUILD_TIME%">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
|
|
<script>
|
|
var coverSupport =
|
|
'CSS' in window &&
|
|
typeof CSS.supports === 'function' &&
|
|
(CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
|
|
document.write(
|
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
|
(coverSupport ? ', viewport-fit=cover' : '') +
|
|
'" />',
|
|
)
|
|
</script>
|
|
<title>%VITE_APP_TITLE%</title>
|
|
<!--preload-links-->
|
|
<!--app-context-->
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"><!--app-html--></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|