Skip to content

Commit b8ae435

Browse files
authored
fix: change lang attribute to ko (#1682)
1 parent d6de9e8 commit b8ae435

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

cypress/e2e/check-server-side-rendering.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('server side rendered page', () => {
1010

1111
it('should find html tag with lang', () => {
1212
cy.visit('/');
13-
cy.get('html[lang="en"]');
13+
cy.get('html[lang="ko"]');
1414
});
1515

1616
it('should find meta charset', () => {

examples/module-federation/app1/public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="ko">
33
<head>
44
<meta charset="UTF-8">
55
<title>App 1</title>

examples/module-federation/app2/public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="ko">
33
<head>
44
<meta charset="UTF-8">
55
<title>App 2</title>

src/components/Site/Site.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function Site(props) {
171171
return (
172172
<div className="site">
173173
<Helmet>
174-
<html lang="en" />
174+
<html lang="ko" />
175175
<meta charset="utf-8" />
176176
<meta name="theme-color" content="#2B3A42" />
177177
<meta name="viewport" content="width=device-width, initial-scale=1" />

src/index.html

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
</head>
5-
<body>
6-
<div id="root"></div>
7-
</body>
1+
<!doctype html>
2+
<html lang="ko">
3+
<head> </head>
4+
<body>
5+
<div id="root"></div>
6+
</body>
87
</html>

0 commit comments

Comments
 (0)