Honey Village: six model builds + hub frontend, Dockerized for Dokploy

This commit is contained in:
2026-07-15 10:50:12 -04:00
commit 67253bded5
523 changed files with 58879 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ctext y='14' font-size='14'%3E🌻%3C/text%3E%3C/svg%3E" />
<title>崩坏童话:蜜糖村</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
background: #101014;
overflow: hidden;
}
#game {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
/* pixel-perfect scaling handled by Phaser Scale.FIT + ZOOM; canvas stays crisp */
canvas {
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
</head>
<body>
<div id="game"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>