diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-22 13:59:13 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-22 13:59:13 +0100 |
commit | 96ee00242f350b391dcc1cf4d72a442c969f565e (patch) | |
tree | a9c57feb105200556c76559b3c775d159c98aef9 /web/pw-frontend/index.html | |
parent | 218ebc3b8f5024a0813f8378b83d91dbb9aa7db2 (diff) | |
download | planetwars.dev-96ee00242f350b391dcc1cf4d72a442c969f565e.tar.xz planetwars.dev-96ee00242f350b391dcc1cf4d72a442c969f565e.zip |
add pw-frontend
Diffstat (limited to 'web/pw-frontend/index.html')
-rw-r--r-- | web/pw-frontend/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/web/pw-frontend/index.html b/web/pw-frontend/index.html new file mode 100644 index 0000000..dc46fa0 --- /dev/null +++ b/web/pw-frontend/index.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> + <!-- polyfill global --> + <script> + const global = globalThis; + </script> + <!-- end polyfill --> + + <head> + <meta charset="UTF-8" /> + <link rel="icon" href="/favicon.ico" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Planetwars</title> + </head> + <body> + <div id="app"></div> + <script type="module" src="/src/main.ts"></script> + </body> +</html> |