Can't change default nuxt favicon
I found the solution, but it's kind of tricky and it's a little far from logic.
the size of the favicon should be 32*32 pixels or nuxt will load the default favicon itself.
and about my tries, it's enough to have a file in your static
folder and give the path to nuxt.config.js
.
but I'm still confused with the solution.
Have you tried replace type: 'image/x-icon'
with type: 'image/png'
?
The infos about this attribute and tag generally can be read here
nuxt will convert object like { head: { link: [{ rel: 'icon', type: 'image/png', href: '/favicon.png' }] }}
to
<head>
<link rel='icon' type='image/png' href='/favicon.png'>
</head>
So you can use any attributes listed in the article above.