2020-11-25 22:03:35 +01:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<link rel="stylesheet" href="/style.css" />
|
2021-05-13 16:23:05 +02:00
|
|
|
<script src="https://unpkg.com/vue@3.0.11"></script>
|
2020-11-25 22:03:35 +01:00
|
|
|
<style type="text/css">
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2020-12-03 21:42:25 +01:00
|
|
|
<title>🧩 jigsaw.hyottoko.club</title>
|
2020-11-25 22:03:35 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2021-05-01 08:59:39 +02:00
|
|
|
<div id="app"></div>
|
2020-11-25 22:03:35 +01:00
|
|
|
<script>window.GAME_ID = '{{GAME_ID}}'</script>
|
|
|
|
|
<script>window.WS_ADDRESS = '{{WS_ADDRESS}}'</script>
|
2020-12-22 22:35:09 +01:00
|
|
|
<script>window.MODE = 'play'</script>
|
2021-05-13 17:20:10 +02:00
|
|
|
<script type="module">
|
|
|
|
|
import main from '/game.js'
|
|
|
|
|
main(document.getElementById('app'))
|
|
|
|
|
</script>
|
2020-11-25 22:03:35 +01:00
|
|
|
</body>
|
|
|
|
|
</html>
|