recreate project

This commit is contained in:
2026-08-01 11:53:13 +08:00
commit 70976ff03a
17 changed files with 1970 additions and 0 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}`)