Vue 在index.html添加小图标(Vue-cli)

2018-06-13  本文已影响45人  取个帅气的名字真好
看看简书的效果

一、转ico格式

jpg/png 转 ico

二 、 完成以下代码

如果是脚手架新建的话

找到你的配置文件

// build/webpack.dev.conf.js

重点在这

new HtmlWebpackPlugin({
    filename: 'index.html',
    template: 'index.html',
    inject: true,
    favicon: './static/logo.ico'   // 加上这个,重点
})

//index.html 中

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

三、重启

npm run dev

完!

上一篇 下一篇

猜你喜欢

热点阅读