Release v0.1.0: 小程序使用建议跳转腾讯文档 + 配置导入导出功能
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<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" />
|
||||
<meta name="description" content="Pack bug screenshots into AI-ready fix instructions with MCP Server integration" />
|
||||
<meta name="theme-color" content="#002FA7" />
|
||||
<meta property="og:title" content="BugPack" />
|
||||
<meta property="og:description" content="Pack bug screenshots into AI-ready fix instructions with MCP Server integration" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://github.com/duhuazhu/BugPack" />
|
||||
<title>BugPack</title>
|
||||
<script>
|
||||
// Sync theme before render to prevent flash
|
||||
try {
|
||||
var xhr = new XMLHttpRequest()
|
||||
xhr.open('GET', '/api/settings', false)
|
||||
xhr.send()
|
||||
if (xhr.status === 200) {
|
||||
var data = JSON.parse(xhr.responseText)
|
||||
if (data.theme === 'light') {
|
||||
document.documentElement.classList.add('light')
|
||||
}
|
||||
}
|
||||
} catch(e) {}
|
||||
</script>
|
||||
</head>
|
||||
<body class="bg-bg-primary text-text-primary">
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/client/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user