mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 03:30:40 +00:00
Add Twitter/X-optimized share card component for exporting insights as an image. Include Vite dev setup for local development with hot reload. Increase DataProcessor timeout and concurrency for better reliability with large datasets. Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
17 lines
549 B
HTML
17 lines
549 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Qwen Code Insights — Dev</title>
|
|
<script src="https://cdn.jsdelivr.net/npm/html2canvas@1.4.1/dist/html2canvas.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="min-h-screen" id="container">
|
|
<div class="mx-auto max-w-6xl px-6 py-10 md:py-12">
|
|
<div id="react-root"></div>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="/src/dev.tsx"></script>
|
|
</body>
|
|
</html>
|