generated from mantinedev/vite-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 999 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RMG Utils for Stellaris</title>
<meta
name="description"
content="RMG Utils is an application that RMG is using to expediate some parts of the mod-making process."
/>
<link rel="icon" type="image/png" href="/src/assets/images/rmg_logo.png" />
<link
rel="apple-touch-icon"
href="/src/assets/images/rmg_logo_180.png"
sizes="180x180"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#f8f9fa"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#25262b"
/>
</head>
<body>
<div id="root"></div>
<script type="module">
import * as Magick from "/magickApi.js";
window.magick = Magick;
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>