Skip to content

Commit 00d8006

Browse files
committed
fix: add noindex to cms ui
1 parent e56a367 commit 00d8006

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/root-cms/core/app.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ function App(props: AppProps) {
1717
return (
1818
<html>
1919
<head>
20+
<meta charset="utf-8" />
2021
<title>{props.title}</title>
22+
<meta name="robots" content="noindex" />
2123
<link rel="preconnect" href="https://fonts.googleapis.com" />
2224
<link
2325
rel="preconnect"
@@ -152,6 +154,7 @@ function SignIn(props: SignInProps) {
152154
<head>
153155
<meta charset="utf-8" />
154156
<title>{props.title}</title>
157+
<meta name="robots" content="noindex" />
155158
<link rel="preconnect" href="https://fonts.googleapis.com" />
156159
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
157160
<link

0 commit comments

Comments
 (0)