CVNSS commited on
Commit
b5eafc4
·
verified ·
1 Parent(s): bbf04d3

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +26 -17
index.html CHANGED
@@ -1,21 +1,30 @@
1
-
2
- <!DOCTYPE html>
3
  <html lang="vi">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
- <head>
6
- <meta charset="UTF-8" />
7
- <link rel="icon" type="image/svg+xml" href="/cad2map-favicon.svg" />
8
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9
- <meta name="description" content="CAD2MAP - Công cụ chuyển đổi file CAD sang bản đồ địa lý" />
10
- <meta name="author" content="CMB-AI" />
11
- <!-- favicon is served from public folder -->
12
- <title>CAD2MAP - CMB AI Tools</title>
13
- <script type="module" crossorigin src="/assets/index-Cm1h4vpW.js"></script>
14
- <link rel="stylesheet" crossorigin href="/assets/index-nLRMG7XC.css">
15
- </head>
16
 
17
- <body>
18
- <div id="app"></div>
19
- </body>
20
 
21
- </html>
 
 
 
 
 
1
+ <!doctype html>
 
2
  <html lang="vi">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+
8
+ <!-- Quan trọng khi host dưới sub-path (Hugging Face Spaces, GitHub Pages, v.v.) -->
9
+ <base href="./" />
10
+
11
+ <title>CAD2MAP - CMB AI Tools</title>
12
+ <meta name="description" content="CAD2MAP - Công cụ chuyển đổi file CAD sang bản đồ địa lý" />
13
+ <meta name="author" content="CMB-AI" />
14
+
15
+ <!-- Dùng path tương đối, KHÔNG dùng /... -->
16
+ <link rel="icon" type="image/svg+xml" href="cad2map-favicon.svg" />
17
 
18
+ <!-- Assets build (Vite/Webpack) cũng dùng path tương đối -->
19
+ <link rel="stylesheet" href="assets/index-nLRMG7XC.css" />
20
+ <script type="module" crossorigin src="assets/index-Cm1h4vpW.js"></script>
21
+ </head>
 
 
 
 
 
 
 
22
 
23
+ <body>
24
+ <div id="app"></div>
 
25
 
26
+ <noscript>
27
+ Ứng dụng cần bật JavaScript để chạy.
28
+ </noscript>
29
+ </body>
30
+ </html>