Files
test1/index.html
shangzy 026e33a08a refactor: cleanup template and add new pages
- Remove unused template files (frontend-code-interpreter, template-renderer)
- Add home, test1, test2, zh-en-translator pages
- Update router configuration
- Add Docker and tailwind config
- Update environment files and configuration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-07 15:08:02 +08:00

25 lines
680 B
HTML

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<title>AI办公助手</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
window.iFrameResizer = {
heightCalculationMethod: 'lowestElement'
}
</script>
<script src="/iframeResizer.contentWindow.js"></script>
</body>
</html>