38 lines
1011 B
JavaScript
38 lines
1011 B
JavaScript
import express from "express";
|
|
import cors from "cors";
|
|
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
import authRouter from "./routes/auth.js";
|
|
import gameRouter from "./routes/game.js";
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
const publicDir = path.join(__dirname, "..", "public");
|
|
|
|
const app = express();
|
|
app.use(cors({ origin: process.env.CORS_ORIGIN ?? "*" }));
|
|
app.use(express.json());
|
|
app.use(express.static(publicDir, {
|
|
etag: false,
|
|
lastModified: false,
|
|
setHeaders: (res) => {
|
|
res.set("Cache-Control", "no-store");
|
|
},
|
|
}));
|
|
|
|
app.use("/api", (_req, res, next) => {
|
|
res.set("Cache-Control", "no-store");
|
|
next();
|
|
});
|
|
|
|
app.use("/api/auth", authRouter);
|
|
app.use("/api", gameRouter);
|
|
|
|
// Catch-all: serve index.html for non-API routes (SPA fallback)
|
|
app.get("*", (req, res) => {
|
|
if (req.path.startsWith("/api")) {
|
|
return res.status(404).json({ error: "not_found" });
|
|
}
|
|
res.sendFile(path.join(publicDir, "index.html"));
|
|
});
|
|
|
|
export default app; |