We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue: Initial website opening goes seemly, but when navigating with nuxt-link, vuetify's icon and font cdns getting removed.
Reproduction: Create nuxt app with vuetify and add nuxt-seo
Versions: Nuxt 2.15.8 Vuetify 2.6.3 Nuxt-Seo 1.6.0
The text was updated successfully, but these errors were encountered:
I'm facing a similar issue as well, the fonts CDN and favicons are getting removed when I dynamically pass title and description from template:
Code provided below: Nuxt.config,js:
seo: { baseUrl: 'https://www.test.com/', charset: 'utf-8', name: 'test App', title: 'test App', templateTitle: '%title%', description: 'test desc', canonical: 'auto', author: 'Tester', openGraph: { image: { url: 'logolinkhere', alt: 'test app', width: '200', height: '150', }, site: '@test', site_name: 'test', creator: '@test', type: 'website', name: 'test App', url: 'https://test.com', title: 'test App', description: 'test', }, twitter: { site: '@test', creator: '@test', card: 'app', type: 'app', title: 'test App', description: 'test', }, facebook: { pageId: 'pageIDHere' }, isForcedTrailingSlash: false },
Pages/index.vue
head({ $seo }) { return $seo({ templateTitle: 'Blog', description: 'Check out these posts', keywords: 'blog, listing, articles', }); },
Output: The fonts and favicons go missing.
Sorry, something went wrong.
Duplicate of #4 This is a known issue and I am working on a fix for it
No branches or pull requests
Issue:
Initial website opening goes seemly, but when navigating with nuxt-link, vuetify's icon and font cdns getting removed.
Reproduction:
Create nuxt app with vuetify and add nuxt-seo
Versions:
Nuxt 2.15.8
Vuetify 2.6.3
Nuxt-Seo 1.6.0
The text was updated successfully, but these errors were encountered: