From ab3bf15efe40eed09b528f77f3a3acbed17f2d8c Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Thu, 3 Aug 2023 00:36:18 +0000 Subject: [PATCH] route cluster routes to /api/cluster --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 56d3e9c..49ad14d 100644 --- a/src/main.js +++ b/src/main.js @@ -30,7 +30,7 @@ import("./routes/auth.js").then((module) => { }); import("./routes/cluster.js").then((module) => { - app.use("/api", module.router); + app.use("/api/cluster", module.router); }); import("./routes/global.js").then((module) => {