fix:修复页面样式

This commit is contained in:
Daniel
2026-04-14 12:05:56 +08:00
parent 508c28ce31
commit 89b21dd314
36 changed files with 2866 additions and 495 deletions

View File

@@ -23,6 +23,7 @@ app.use(
},
})
);
app.use("/assets", express.static(path.join(repoRoot, "assets")));
app.use(express.static(path.join(__dirname, "public")));
app.get("/api/health", (_req, res) => {
@@ -475,4 +476,3 @@ const port = Number(process.env.PORT || 3000);
process.exit(1);
}
})();