vue修改favicon.ico
2019-12-03 本文已影响0人
凌康ACG
一、
favicon.ico
图片放在src/assets/favicon.ico
二、
在build/webpack.dev.conf.js
下
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true,
//图标
favicon: path.resolve('src/assets/favicon.ico')
}),
在build/webpack.prod.conf.js
下
// generate dist index.html with correct asset hash for caching.
// you can customize output by editing /index.html
// see https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
//图标
favicon: path.resolve('src/assets/favicon.ico'),
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),