summaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2017-09-09 02:52:01 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2017-09-09 02:53:10 +0200
commita47638aab5af2a425b2bc6342c7bed6a79a771da (patch)
treede79effb17a18917e801224a3907683cc889e851 /dist
downloadrpgedit-a47638aab5af2a425b2bc6342c7bed6a79a771da.tar
rpgedit-a47638aab5af2a425b2bc6342c7bed6a79a771da.zip
Initial setup (Webpack, TypeScript, WebGL)
Diffstat (limited to 'dist')
-rw-r--r--dist/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/dist/index.html b/dist/index.html
new file mode 100644
index 0000000..d020eff
--- /dev/null
+++ b/dist/index.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>RPGedit</title>
+ <style type="text/css">
+ html, body {
+ width: 100%;
+ height: 100%;
+ }
+
+ canvas {
+ position: absolute;
+ }
+
+ * {
+ margin: 0px;
+ padding: 0px;
+ border: 0px;
+ }
+ </style>
+ </head>
+ <body>
+ <canvas id="rpgedit"></canvas>
+ <script src="bundle.js"></script>
+ </body>
+</html>