Files
mao1/PWA/index.html
fyah 91a8b6b7e4 feat: add PWA — mobile multi-model chat app (Vite + React)
- Vite + React + TypeScript + Tailwind v4
- vite-plugin-pwa for service worker and manifest
- Dark mode, borderless design with glow effects
- Reuses Elec components, adapted for mobile viewport
- Standalone-ready: can install to phone home screen

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-09 12:19:19 +08:00

16 lines
533 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" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>Elec</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>