1.不重新編譯 webadmin,修改登錄頁面文字標題
文件位置: /plugin/admin/app/view/index/index.html 中內(nèi)容如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" type="image/x-icon" >
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arco Design Pro - 開箱即用的中臺前端/設(shè)計解決方案</title>
<script type="module" crossorigin src="/assets/index.29d1f1fd.js"></script>
<link rel="modulepreload" href="/assets/arco.f97752e2.js">
<link rel="modulepreload" href="/assets/chart.1bb0aa8b.js">
<link rel="modulepreload" href="/assets/vue.1b4fbe39.js">
<link rel="stylesheet" href="/assets/index.efee5940.css">
</head>
<body>
<div id="app"></div>
</body>
</html>
webman 1.4
webman-admin 0.3
貌似不重新編譯是沒辦法的,就為了這幾個文字修改,再單獨編譯,似乎不太合算呀
如果以后webadmin升級了,還得重新修改編譯。
官方可考慮將這些常用修改的融入后臺配置里
ide編輯器搜下就有了,在 plugin/admin/app/view/index/index.html
我這里面內(nèi)容是這樣的```<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" type="image/x-icon" href="https://unpkg.byted-static.com/latest/byted/arco-config/assets/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arco Design Pro - 開箱即用的中臺前端/設(shè)計解決方案</title>
<script type="module" crossorigin src="/assets/index.29d1f1fd.js"></script>
<link rel="modulepreload" href="/assets/arco.f97752e2.js">
<link rel="modulepreload" href="/assets/chart.1bb0aa8b.js">
<link rel="modulepreload" href="/assets/vue.1b4fbe39.js">
<link rel="stylesheet" href="/assets/index.efee5940.css">
</head>
<body>
<div id="app"></div>
</body>
</html>```