mirror of
https://gitee.com/ShopeX/ECShopX_admin-frontend
synced 2026-08-05 20:45:50 +08:00
- Inject <title> from env in public/index.html (fallback ECShopX)\n- Document VUE_APP_PAGE_TITLE in .env\n- Add i18n reference keys 91quyic5, a3xlub5; ensure newline at EOF for index.json Made-with: Cursor
26 lines
921 B
HTML
Executable File
26 lines
921 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="referrer" content="never" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0"
|
|
/>
|
|
<title><%= process.env.VUE_APP_PAGE_TITLE || 'ECShopX' %></title>
|
|
<link rel="stylesheet" href="//at.alicdn.com/t/c/font_3832401_lyx1hsdvyee.css" />
|
|
<link
|
|
rel="shortcut icon"
|
|
href="<%= process.env.VUE_APP_PLATFORM === 'shuyun' ? '/favicon-shuyun.ico' : '/favicon.ico' %>"
|
|
/>
|
|
<link rel="stylesheet" href="<%= BASE_URL %>loading.css" data-app-loading="inject-css" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<div class="global-loading" id="__app-loading__">
|
|
<div class="loader"></div>
|
|
<img src="<%= BASE_URL %>images/logo.png" alt="logo" class="logo" width="220" style="margin-top: 36px;">
|
|
</div>
|
|
</body>
|
|
</html>
|