vue中添加title中的小图标
webpack.prod.conf.js 这个文件中:
引入代码const path = require('path') ;下面是进行配置:
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
favicon: path.resolve('./favicon.ico'),
inject: true,
}),
webpack.prod.dev.js这个文件中:
引入代码:const path = require('path') ; 下面是进行配置:
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
favicon: path.resolve('./favicon.ico'),
inject: true,
}),
最后很关键的index.html中的代码引入:
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" rel="external nofollow" />
更多精彩

