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
By default a project generated by vue-cli doesn't pass the no-js Lighthouse inspection:
vue-cli
no-js
https://developers.google.com/web/tools/lighthouse/audits/no-js
vue-cli should add something like the following in index.html inside the body tag to notify users that Javascript is mandatory:
index.html
body
<noscript> <strong>We're sorry but {{APP_NAME}} doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> </noscript>
The text was updated successfully, but these errors were encountered:
feat: add default <noscript> content (#856)
a489803
Add some default content that can be seen by browsers where JavaScript is disabled. See: https://developers.google.com/web/tools/lighthouse/audits/no-js Closes #854
Is there any way to remove this element? E.g. in most cases the app would still work without JS if you are using SSR?
Sorry, something went wrong.
Running into Vue issue 854, vuejs/vue-cli#854
21dabc9
No branches or pull requests
What problem does this feature solve?
By default a project generated by
vue-cli
doesn't pass theno-js
Lighthouse inspection:https://developers.google.com/web/tools/lighthouse/audits/no-js
What does the proposed API look like?
vue-cli
should add something like the following inindex.html
inside thebody
tag to notify users that Javascript is mandatory:The text was updated successfully, but these errors were encountered: