diff options
author | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:58:45 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:59:07 -0700 |
commit | d3c7705bedebd65c94f9eea691aaf2fe03b0cafe (patch) | |
tree | 5f98b3d9bbbd4fe8067b5a334e84aff008b8db22 /modern/index.html | |
parent | 0161ae449d4a7bd0781c0665d663353663ab0faf (diff) | |
download | trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.gz trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.bz2 trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.zip |
Move to Vite
Diffstat (limited to 'modern/index.html')
-rw-r--r-- | modern/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modern/index.html b/modern/index.html new file mode 100644 index 00000000..9c5a92f7 --- /dev/null +++ b/modern/index.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <link rel="icon" href="/favicon.ico" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="theme-color" content="${colorPrimary}" /> + <meta name="description" content="${description}" /> + <link rel="apple-touch-icon" href="/logo192.png" /> + <link rel="manifest" href="/manifest.json" /> + <link rel="stylesheet" href="/styles.css"> + <title>${title}</title> + </head> + <body> + <noscript>Enable JavaScript to use <a href="https://www.traccar.org/">Traccar GPS Tracking System</a>.</noscript> + <div id="root" class="root"></div> + <script type="module" src="/src/index.jsx"></script> + </body> +</html> |