fix host typo
This commit is contained in:
parent
703b3a50f3
commit
f414d2e057
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ const express = require("express");
|
|||
const axios = require("axios");
|
||||
|
||||
const port = Number(process.env.PORT || 8080);
|
||||
const apiHost = (process.env.API_HOST = "localhost:3000");
|
||||
const apiHost = process.env.API_HOST || "localhost:3000";
|
||||
|
||||
const app = express();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue