feat(about): sync FE-BE data and image upload

This commit is contained in:
2026-02-06 01:58:56 +07:00
parent fb8676879d
commit 8232a36e71
16 changed files with 1096 additions and 2821 deletions

View File

@@ -44,6 +44,9 @@ app.use(
express.static(path.join(__dirname, "assets")),
);
// Map /assets/img to public/img to support frontend paths
app.use("/assets/img", express.static(path.join(__dirname, "public", "img")));
// Serve public folder at root (for /js, /img, etc.)
app.use(express.static(path.join(__dirname, "public")));