diff options
Diffstat (limited to 'sw-ui/src/jsMain/resources/index.html')
-rw-r--r-- | sw-ui/src/jsMain/resources/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sw-ui/src/jsMain/resources/index.html b/sw-ui/src/jsMain/resources/index.html new file mode 100644 index 00000000..b43c1428 --- /dev/null +++ b/sw-ui/src/jsMain/resources/index.html @@ -0,0 +1,19 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="shortcut icon" href="${publicPath}favicon.ico"> + <title>Seven Wonders</title> + <link href='https://fonts.googleapis.com/css2?family=Acme&display=swap' rel='stylesheet'> + <!-- Style dependencies --> + <link href="https://unpkg.com/normalize.css@^7.0.0" rel="stylesheet"/> + <!-- Blueprint stylesheets --> + <link href="https://unpkg.com/@blueprintjs/icons@^4.13.0/lib/css/blueprint-icons.css" rel="stylesheet"/> + <link href="https://unpkg.com/@blueprintjs/core@^4.15.0/lib/css/blueprint.css" rel="stylesheet"/> + </head> + <body> + <div id="root"></div> + <script src="${bundle}"></script> + </body> +</html> |