一、 在public下放置favicon.ico文件

浏览器会自动爬去根目录的 favicon.ico 文件,然后自动呈现

二、在index.html入口文件添加

<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>

当然也可以添加其他类型的网址图标,如:png图标

<link rel="shortcut icon" type="image/png" href="favicon.png"/>

三、在HtmlWebpackPlugin插件中配置

new HtmlWebpackPlugin({
  filename: 'index.html',
  template: 'index.html',
  inject: true,
  favicon: path.resolve('favicon.ico')
}),
Logo

前往低代码交流专区

更多推荐