diff --git a/app/src/server.ts b/app/src/server.ts index 6de5f21..0ce8656 100644 --- a/app/src/server.ts +++ b/app/src/server.ts @@ -5,7 +5,7 @@ import esbuild from "esbuild"; async function main() { const port = Number(process.env.PORT ?? "8080"); - const apiUrl = process.env.QUOT_API_URL || "http://localhost:3000/"; + const apiUrl = process.env.QUOT_API_URL || "http://127.0.0.1:3000/"; const publicDir = __dirname; const htmlPath = `${publicDir}/index.html`; const scriptPath = `${publicDir}/index.ts`;