mirror of
https://github.com/1Panel-dev/CordysCRM.git
synced 2026-05-20 17:08:10 +08:00
23 lines
623 B
HTML
23 lines
623 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Cordys CRM</title>
|
|
</head>
|
|
<script type="module">
|
|
function isMobileDevice() {
|
|
return /Mobile|Android/i.test(navigator.userAgent);
|
|
}
|
|
|
|
if (isMobileDevice()) {
|
|
window.location.href = import.meta.env.DEV ? 'http://localhost:3000' : `${window.location.origin}/mobile`;
|
|
}
|
|
</script>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|