- 添加基于 Vite + React + TypeScript 的前端项目 - 配置 .gitignore 排除 node_modules 和构建产物 - 添加 web/.gitignore 用于前端项目的忽略规则 - 包含完整的源代码、配置文件和依赖锁定文件 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
458 B
HTML
15 lines
458 B
HTML
<!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, maximum-scale=1.0, user-scalable=no" />
|
|
<meta name="description" content="AnKao 移动端应用" />
|
|
<title>AnKao</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|