speed up redirect by using 302 redirect instead of vue redirect

pull/760/head
Louis Lam 3 years ago
parent 75b21c905f
commit c094dc0c5b

@ -186,6 +186,15 @@ exports.entryPage = "dashboard";
// Normal Router here
// ***************************
// Entry Page
app.get("/", async (_request, response) => {
if (exports.entryPage === "statusPage") {
response.redirect("/status");
} else {
response.redirect("/dashboard");
}
});
// Robots.txt
app.get("/robots.txt", async (_request, response) => {
let txt = "User-agent: *\nDisallow:";

Loading…
Cancel
Save