🔧 Fixed the process env var

This commit is contained in:
2021-11-01 16:28:04 -07:00
parent 95a5a9bfa6
commit 4209012298

View File

@@ -38,7 +38,7 @@ export const IMPORT_SERVICE_BASE_URI = hostURIBuilder({
export const SOCKET_BASE_URI = hostURIBuilder({
protocol: "http",
host: process.env.LIBRARY_SOCKET_HOST || "localhost",
host: process.env.UNDERLYING_HOSTNAME || "localhost",
port: "3001",
apiPath: `/`,
});