feat: 初始化文字马赛克生成器

This commit is contained in:
necobot
2026-07-25 16:19:26 +08:00
parent 0001f72635
commit c580d069b1
12 changed files with 1654 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
import homepage from '../index.html'
const server = Bun.serve({
port: Number(Bun.env.PORT ?? 5173),
routes: {
'/': homepage,
},
development: true,
})
console.log(`文字马赛克开发服务器:http://localhost:${server.port}`)