如何更改Angular 6中的图标图标和项目标题?

时间:2018-09-27 09:55:02

标签: angular

当前我在角度6中安装了名为(Adminpanels)的项目,并使用ng serve --open打开了该项目,它打开了名称为Adminpanels并显示了默认的角度图标图标,该图标现在显示在图像中,我想将名称更改为(新建项目),并且还想更改图标图标,是否可以在安装项目后在角度6中更改图标图标和项目标题?

enter image description here

3 个答案:

答案 0 :(得分:3)

更改title中的faviconindex.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>