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
@ulivz @yyx990803 does this cause a double up in the title meta tag.
If I have...
module.exports = { title: 'Theme Title', }
and
--- layout: about title: About Us ---
I get <title>About Us | About Us</title>
<title>About Us | About Us</title>
Whereas, if I have:
--- layout: about --- About Us
I get <title>About Us | Theme Title</title>
<title>About Us | Theme Title</title>
The text was updated successfully, but these errors were encountered:
Fixes vuejs#208
554f3c7
52c20cf
fix(bundler-webpack): sync types of webpack-dev-server 4 (close #208)
207014b
No branches or pull requests
@ulivz @yyx990803 does this cause a double up in the title meta tag.
If I have...
and
I get
<title>About Us | About Us</title>
Whereas, if I have:
I get
<title>About Us | Theme Title</title>
The text was updated successfully, but these errors were encountered: