fix host typo

This commit is contained in:
Guy Bianco IV 2021-06-21 17:10:55 -04:00
parent 703b3a50f3
commit f414d2e057

View file

@ -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();