mirror of
https://github.com/un-pany/v3-admin-vite.git
synced 2025-04-20 10:59:21 +08:00
18 lines
490 B
HTML
18 lines
490 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="stylesheet" href="/app-loading.css" />
|
|
<title>%VITE_APP_TITLE%</title>
|
|
<script src="/detect-ie.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div id="app-loading"></div>
|
|
</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|