Browse Source

chore: meta tag change
- `X-UA-Compatible` is only used by Internet Explorer, so it removed
- `robots` allows the panel not to be indexed by a search engine

Shishkevich D. 2 weeks ago
parent
commit
510c35f450
1 changed files with 2 additions and 2 deletions
  1. 2 2
      web/html/common/head.html

+ 2 - 2
web/html/common/head.html

@@ -2,8 +2,8 @@
 <head>
   <meta charset="UTF-8">
   <meta name="renderer" content="webkit">
-  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <meta name="robots" content="noindex,nofollow">
   <link rel="stylesheet" href="{{ .base_path }}assets/ant-design-vue/antd.min.css">
   <link rel="stylesheet" href="{{ .base_path }}assets/css/custom.min.css?{{ .cur_ver }}">
   <style>
@@ -25,7 +25,7 @@
         'Segoe UI Emoji', 'Segoe UI Symbol';
     }
   </style>
-  <title>{{ .host }}-{{ i18n .title}}</title>
+  <title>{{ .host }}{{ i18n .title}}</title>
 </head>
 <div id="message"></div>
 {{end}}