That's weird because our website have nested route and the favicon works without any issue.
Can you share us some screenshot or code example please?
Here is the dev tools console log with the attached images. It only happens when it detects a new route, such as a new card id in the dynamic route.
It should work by adding a slash before favicon.ico in your nuxt.config.js.
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
It seems to not want to request the flavicon at all after those changes.
@mattdharmon you might also want to include router.base in your nuxt.config.js file:
...
router: {
base: '/'
}
...
Reference : https://github.com/nuxt/nuxt.js/issues/239
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
It should work by adding a slash before favicon.ico in your nuxt.config.js.
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }