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
I believe there is an error at this line.
It raises an error with html-validator:
error Attribute "crossorigin" has invalid value "true" attribute-allowed-values
The rendered element is: <link data-n-head="ssr" data-hid="gf-preconnect" rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="true">
<link data-n-head="ssr" data-hid="gf-preconnect" rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="true">
It should be: <link data-n-head="ssr" data-hid="gf-preconnect" rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link data-n-head="ssr" data-hid="gf-preconnect" rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
The text was updated successfully, but these errors were encountered:
fix: update crossorigin attribute
feaeb9e
Fixes nuxt-modules#27
after update HTML validation errors found for /articles/ error: Attribute "crossorigin" should omit value (attribute-empty-style)
HTML validation errors found for /articles/ error: Attribute "crossorigin" should omit value (attribute-empty-style)
Sorry, something went wrong.
According to this page, the empty string is valid but it's true that html-validator still complains.
An alternative would be to set it to anonymous which seems to also be equivalent according to the same page.
anonymous
Successfully merging a pull request may close this issue.
I believe there is an error at this line.
It raises an error with html-validator:
The rendered element is:
<link data-n-head="ssr" data-hid="gf-preconnect" rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="true">
It should be:
<link data-n-head="ssr" data-hid="gf-preconnect" rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
The text was updated successfully, but these errors were encountered: