From 059526d961f07c47ce1433c68fb3c45d8bd18bef Mon Sep 17 00:00:00 2001 From: Cohen Erickson Date: Mon, 27 Feb 2023 12:33:47 -0600 Subject: [PATCH] Fix UV --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 0e27b6c..7d954bf 100644 --- a/app.js +++ b/app.js @@ -160,8 +160,8 @@ app.post("/validate-otp", (req, res) => { }); // Static files -app.use("/uv/", express.static(uvPath)); app.use(express.static(path.join(__dirname, "public"))); +app.use("/uv/", express.static(uvPath)); // Login route app.get("/login", (req, res) => {