Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUnblockedHubOfficial authored Oct 18, 2023
1 parent d72358e commit 07398bb
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,42 +59,6 @@ app.get("/*", (req, res) => {
res.redirect("/404");
});

app.get("/beta/", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "index.html"));
});

app.get("/beta/404", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "404.html"));
});

app.get("/beta/apps", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "apps.html"));
});

app.get("/beta/gs", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "gs.html"));
});

app.get("/beta/lgo", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "load.html"));
});

app.get("/beta/loading", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "fullscreen.html"));
});

app.get("/beta/search", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "search.html"));
});

app.get("/beta/settings", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "settings.html"));
});

app.get("/beta/utilities", (req, res) => {
res.sendFile(path.join(__dirname, "static", "beta", "utils.html"));
});

// Bare Server
server.on("request", (req, res) => {
if (bareServer.shouldRoute(req)) {
Expand Down

0 comments on commit 07398bb

Please sign in to comment.