fix(review): don't specify hostname

This commit is contained in:
darkweak 2023-10-18 08:29:16 +02:00 committed by Francis Lavoie
parent c34ed730c4
commit 73f7aeb5ba
No known key found for this signature in database
GPG key ID: C5204D4F28147FC8
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@
<option value="windows-arm-7">Windows arm 7</option>
<option value="windows-arm64">Windows arm64</option>
</select>
<a id="download-link" href="https://localhost/api/download">
<a id="download-link" href="/api/download">
<button class="primary">
Download
</button>

View file

@ -1,4 +1,4 @@
const BASE_API_PATH = 'https://localhost/api';
const BASE_API_PATH = '/api';
const pkgURL = `${BASE_API_PATH}/packages`;
const downloadURL = `${BASE_API_PATH}/download`;