Skip to content

Commit

Permalink
fix: using lang attribute with empty string in html template
Browse files Browse the repository at this point in the history
Fixes #5945
  • Loading branch information
fangbinwei committed Oct 22, 2020
1 parent 2039117 commit 7d04553
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/@vue/cli-service-global/template/index.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="">
<head>
<meta charset="utf-8">
<title>Vue CLI App</title>
Expand Down
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-service/lib/config/index-default.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down

0 comments on commit 7d04553

Please sign in to comment.