当前我在角度6中安装了名为(Adminpanels)的项目,并使用ng serve --open打开了该项目,它打开了名称为Adminpanels并显示了默认的角度图标图标,该图标现在显示在图像中,我想将名称更改为(新建项目),并且还想更改图标图标,是否可以在安装项目后在角度6中更改图标图标和项目标题?
答案 0 :(得分:3)
更改title
中的favicon
和index.html
<title>New Project</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
答案 1 :(得分:0)
您可以在项目根目录的index.html中更改它
<!-- Title -->
<title>Title</title>
<!-- Fav icon -->
<link rel="icon" type="image/x-icon" href="./resources/icons/favicon.png">
答案 2 :(得分:0)
标题更改:在index.html的标题标记内对其进行更改
网站图标更改:下载所需的网站图标图像, 大小兼容(例如32 * 32像素),并将其另存为项目文件夹中的 src / assets /您的收藏夹图片。
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<title>userRegAndLoginApp</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.png">
</head>
<body>
The content of your document...
</body>
</html>