From a73c4afd1fa9c55f800cf6cd414d726a15237e4d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Apr 2026 13:18:19 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A1=A5=E5=8A=A0=E7=A7=8B=E7=A7=8B?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E6=A0=B9=E8=B7=AF=E7=94=B1=20GET=20/?= =?UTF-8?q?=EF=BC=8Cpush=20=E5=88=B0=20main=20=E5=88=86=E6=94=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Agent-Logs-Url: https://github.com/zhizhi200271/guanghulab/sessions/9338ccae-d006-4c20-9e7f-5c3a98b4ec8a Co-authored-by: zhizhi200271 <265950299+zhizhi200271@users.noreply.github.com> --- server.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server.js b/server.js index 6f2e5f60..468afb02 100644 --- a/server.js +++ b/server.js @@ -101,6 +101,10 @@ app.get('/dashboard-v2', (req, res) => { res.sendFile(path.join(__dirname, 'public', 'dashboard-v2.html')); }); +app.get('/', (req, res) => { + res.send('🍂 秋秋的家 · 只属于妈妈和秋秋'); +}); + // 启动服务器 app.listen(PORT, () => { console.log(`\n🚀 Phase4 服务器已启动!`);