当前位置 : 主页 > 网页制作 > html >

在vue项目中使用avicon.ico

来源:互联网 收集:自由互联 发布时间:2021-06-12
一般项目使用avicon.ico都是在index.html头部head中加入代码 link rel= "shortcut icon" type= "image/x-icon" href= "favicon.ico" / vue项目中使用和上面的方法不同,需要配置webpack才能使avicon.ico生效,记录一

一般项目使用avicon.ico都是在index.html头部head中加入代码

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

vue项目中使用和上面的方法不同,需要配置webpack才能使avicon.ico生效,记录一下,以备后用。

webpack.dev.conf.js文件中修改

    let path = require(‘path‘) // 增加
    new HtmlWebpackPlugin({
      filename: ‘index.html‘,
      template: ‘index.html‘,
      inject: true,
      favicon: path.resolve(‘favicon.ico‘) // 增加
    })


webpack.prod.conf.js文件中修改

   new HtmlWebpackPlugin({
      filename: config.build.index,
      template: ‘index.html‘,
      inject: true,
      favicon: path.resolve(‘favicon.ico‘), //新增
      minify: {
        removeComments: true,
        collapseWhitespace: true,
        removeAttributeQuotes: true
        ...
    })

修改以后需要重新启动项目npm run dev

上一篇:Webox API ver2.0
下一篇:网页插入音视频
网友评论