Skip to content
New issue

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

Conflict with vuetify #10

Open
LynxTR opened this issue Feb 26, 2022 · 2 comments
Open

Conflict with vuetify #10

LynxTR opened this issue Feb 26, 2022 · 2 comments
Labels
bug Something isn't working duplicate This issue or pull request already exists

Comments

@LynxTR
Copy link

LynxTR commented Feb 26, 2022

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

@RiaColaco05
Copy link

RiaColaco05 commented Feb 28, 2022

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.

@nickfrosty
Copy link
Owner

nickfrosty commented Apr 15, 2022

Duplicate of #4
This is a known issue and I am working on a fix for it

@nickfrosty nickfrosty added bug Something isn't working duplicate This issue or pull request already exists labels Apr 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working duplicate This issue or pull request already exists
Projects
None yet
Development

No branches or pull requests

3 participants