remove no cache from /api/env

This commit is contained in:
Evan
2025-03-06 10:46:23 -08:00
parent 152ffb8dc1
commit 1a9176779f
-5
View File
@@ -145,11 +145,6 @@ app.get("/api/env", (req, res) => {
const envConfig = {
game_env: process.env.GAME_ENV || "prod",
};
res.set("Cache-Control", "no-cache, no-store, must-revalidate");
res.set("Pragma", "no-cache");
res.set("Expires", "0");
res.json(envConfig);
});