美文网首页
自定义title、favicon

自定义title、favicon

作者: 我也不知道啊丶 | 来源:发表于2021-12-06 03:01 被阅读0次

打开vue.config.js,如果没有则在项目根目录新建一个。
然后配置如下:

/**
 * @type {import('@vue/cli-service').ProjectOptions}
 */
module.exports = {
    publicPath: './',
    pwa: {
        iconPaths: {
            favicon32: 'favicon.png',
            favicon16: 'favicon.png',
            appleTouchIcon: 'favicon.png',
            maskIcon: 'favicon.png',
            msTileImage: 'favicon.png'
        }
    },
    pages:{
        index: {
            entry: 'src/main.js',
            title: 'title',
        },
    }
}

相关文章

网友评论

      本文标题:自定义title、favicon

      本文链接:https://www.haomeiwen.com/subject/srcgxrtx.html