Files
DevFlow/index.html
绝尘 98393b4908 新增: 初始化 DevFlow 项目仓库
Tauri 2 + Vue 3 + Vite 6 桌面应用,Rust workspace 含 13 个 crate
(df-ai / df-storage / df-workflow / df-core / df-execute 等)。
核心能力:AI 聊天 agentic 循环(工具调用+人工审批)、工作流引擎、
任务/想法/项目/阶段管理、可追溯性,及配套前端组件。
2026-06-12 01:31:05 +08:00

25 lines
910 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevFlow</title>
</head>
<body style="background:#0c0e1a">
<script>
// 启动计时基准webview 解析 index.html 的时刻
window.__APP_T0 = performance.now();
</script>
<script>
// 在渲染前设置主题,防止白屏闪烁
var t = localStorage.getItem('df-theme') || 'dark';
if (t === 'light') document.documentElement.setAttribute('data-theme', 'light');
else if (t === 'system' && !window.matchMedia('(prefers-color-scheme: dark)').matches)
document.documentElement.setAttribute('data-theme', 'light');
</script>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>