Browse Source

Do not point to localhost

pull/2077/head
Gabe Kangas 3 years ago
parent
commit
65b6feb40d
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 2
      web/services/client-config-service.ts

2
web/services/client-config-service.ts

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
import { ClientConfig } from '../interfaces/client-config.model';
const ENDPOINT = `http://localhost:8080/api/config`;
const ENDPOINT = `/api/config`;
class ClientConfigService {
public static async getConfig(): Promise<ClientConfig> {

Loading…
Cancel
Save