From 73f7aeb5baa724bf1c8c6a2e95c2a18f800116be Mon Sep 17 00:00:00 2001 From: darkweak Date: Wed, 18 Oct 2023 08:29:16 +0200 Subject: [PATCH] fix(review): don't specify hostname --- new/download.html | 2 +- new/resources/js/download.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/new/download.html b/new/download.html index 21337d8..7b77199 100644 --- a/new/download.html +++ b/new/download.html @@ -49,7 +49,7 @@ - + diff --git a/new/resources/js/download.js b/new/resources/js/download.js index 4bc1b76..5909891 100644 --- a/new/resources/js/download.js +++ b/new/resources/js/download.js @@ -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`;