fix(server): corrected the env port in the api scaler

This commit is contained in:
2025-03-04 05:50:24 -06:00
parent 2a536e5423
commit 9b7e60cad0

View File

@@ -52,11 +52,11 @@ app.get(
baseServerURL: "https://scalar.com", baseServerURL: "https://scalar.com",
servers: [ servers: [
{ {
url: `http://usday1vms006:${process.env.SERVER_PORT}`, url: `http://usday1vms006:${process.env.VITE_SERVER_PORT}`,
description: "Production", description: "Production",
}, },
{ {
url: `http://localhost:${process.env.SERVER_PORT}`, url: `http://localhost:${process.env.VITE_SERVER_PORT}`,
description: "dev server", description: "dev server",
}, },
], ],