training_data/apps/web/index.html

23 lines
506 B
HTML
Raw Normal View History

2024-07-11 11:00:51 +08:00
<!doctype html>
<html lang="en">
2024-09-09 18:48:07 +08:00
<head>
2024-12-30 08:26:40 +08:00
<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" />
<script>
window.env = {
VITE_APP_SERVER_IP: "$VITE_APP_SERVER_IP",
VITE_APP_APP_NAME: "$VITE_APP_APP_NAME",
VITE_APP_VERSION: "$VITE_APP_VERSION",
};
</script>
2025-01-03 09:24:55 +08:00
<title>fhmooc</title>
2024-09-09 18:48:07 +08:00
</head>
<body>
2024-12-30 08:26:40 +08:00
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
2024-09-09 18:48:07 +08:00
</body>
</html>