我在nuxt.config.js中使用了这段代码
{ rel: 'icon', type='image/png', sizes: '32x32', href: '/images/favicon/favicon-32x32.png' },
但是SyntaxError:速记属性初始化程序无效
我该怎么做
答案 0 :(得分:0)
我在网站图标上添加了一个查询字符串,它对我有用。
{ rel: 'icon', type: 'image/png', href: '/favicon.png?v2' }
答案 1 :(得分:0)
您的对象中存在语法错误,其中type='image/png'
应该为type: 'image/png'
答案 2 :(得分:-1)
我也无法使用.png。我是用.ico制作的:
{rel:'icon',类型:'image / x-icon',href:'/favicon.ico'}
我从https://realfavicongenerator.net上的png生成的.ico并将其添加到/ static文件夹中。