training_data/apps/web/index.html

25 lines
563 B
HTML
Raw Permalink 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 = {
2025-03-04 22:15:34 +08:00
VITE_APP_SERVER_IP: "$SERVER_IP",
2025-03-05 09:17:36 +08:00
VITE_APP_SERVER_PORT: "$SERVER_PORT",
2025-03-04 22:15:34 +08:00
VITE_APP_APP_NAME: "$APP_NAME",
VITE_APP_VERSION: "$VERSION",
VITE_APP_FILE_PORT: "$FILE_PORT",
2024-12-30 08:26:40 +08:00
};
</script>
2025-03-31 20:44:33 +08:00
<title>trainng_DATA</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>