The title in head is blink when change locale
See original GitHub issueVersion
Reproduction link
Steps to reproduce
I set my head()
in index.vue
. The problem is when I change locale or navigate to another route I see title
blink.
If I remove nuxt-i18n
or set seo: false
everything ok.
head () {
title: `!!MY TITLE`
}
What is expected ?
No blink
What is actually happening?
Blink
<div align="right">This bug report is available on Nuxt community (#c165)</div>Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:14
Top Results From Across the Web
Blink and change the title of website when user isn't in tab
Any idea how to make it blink? $(function() { // Get page title var pageTitle = $("head title") ...
Read more >The Blinking Text element - HTML: HyperText Markup Language
The HTML element is a non-standard element which causes the enclosed text to flash slowly.
Read more >HTML <Blink> Tag | W3Docs
The HTML <blink> tag is a non-standard element used to create an enclosed text, which flashes slowly. General blink meaning is light flashing...
Read more >Structural markup and right-to-left text in HTML - W3C
This article looks at ways of handling text direction for structural markup in HTML, ie. at the document level and for elements like ......
Read more >HTML | <blink> Tag - GeeksforGeeks
The HTML <blink> tag is used to create a blinking text that flashes ... This tag was also never standardized by hypertext mark-up...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@rchl thanks for this reply! I solved this issue by removing title property in head inside nuxt.config.js
Forgot to mention, to reproduce this issue you need long page transitions
If you have no transition then it’s happening instantly and you will not notice the issue.
@adi-zz not sure! It could be because
head()
manipulation is triggered in wrong time n=by this module and it’s conflicting with customhead()
in pages.