- Vite + React 18 + TypeScript + React Router v6 + Ant Design Mobile - /v1 proxy to http://127.0.0.1:3201 in vite.config.ts - Placeholder routes for / and /login - Build verified passing Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
340 B
HTML
13 lines
340 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>Smart Project</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|