f9eed82afb
Added maximum-scale=1.0, user-scalable=no to viewport meta tag. Prevents iOS Safari from auto-zooming when focusing inputs with font-size < 16px. Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
629 B
HTML
18 lines
629 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>企迹 - 政企周报管理系统</title>
|
|
|
|
<!-- Preconnect to Google Fonts origins for faster font loading -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|