Make login default to the call url

This commit is contained in:
Matthias 2021-01-10 11:13:35 +01:00
parent 8228a7ad13
commit 983cd5004a

View File

@ -66,7 +66,7 @@ import { setBaseUrl } from '@/shared/apiService';
import { AuthPayload } from '@/types';
const defaultURL = 'http://localhost:8080';
const defaultURL = window.location.origin || 'http://localhost:8080';
@Component({})
export default class Login extends Vue {