我已经将vuejs2应用程序部署到了tomcat服务器。作为“ npm run build”的结果,已创建dist文件夹。我将 “静态文件夹 ”和 “ index.html文件” 复制到Tomcat的webapps文件夹{{3 }}。运行服务器时,UI变为空白,并且发生错误IMG1。因此,我更改了“ index.html”文件中的“ src路径”,即我删除了“ static”一词之前的所有“ /”斜杠。
现在我的 index.html 文件是:
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta http-equiv=X-UA-Compatible content="IE=edge">
<meta name=viewport
content="width=device-width,initial-scale=1,shrink-to-fit=no">
<title>CoreUI - Open Source Bootstrap Admin Template</title>
<link rel="shortcut icon" href=static/img/favicon.png>
<link href=static/css/app.a6a6629a4b2d2029e98d4ff760232674.css
rel=stylesheet>
</head>
<body
class="app header-fixed sidebar-fixed aside-menu-fixed aside-menu-hidden">
<div id=app></div>
<script type=text/javascript
src=static/js/manifest.2ae2e69a05c33dfc65f8.js></script>
<script type=text/javascript
src=static/js/vendor.f41d9b8e13cff17b9752.js></script>
<script type=text/javascript src=static/js/app.3ca9e311e8d1cae856ab.js></script>
</body>
</html>
路径更改后,出现UI。但是UI中给定的图标(在登录页面和左侧菜单的图标中)未正确加载,并且在控制台ERROR1,ERROR2中显示错误。我不知道此错误的原因。请帮助我加载图标,而不会出现任何错误。
预先感谢
静态文件夹结构: ERROR4