aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/views/Home.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/views/Home.vue')
-rw-r--r--src/frontend/views/Home.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/views/Home.vue b/src/frontend/views/Home.vue
index 79ec4ab..9ee5c02 100644
--- a/src/frontend/views/Home.vue
+++ b/src/frontend/views/Home.vue
@@ -47,7 +47,7 @@ export default {
watch(() =>
{
- fetch(`http://localhost:1337/api/v1/repos`)
+ fetch(`${window.location.protocol}//${window.location.host}/api/v1/repos`)
.then((res) => res.json())
.then((data) => state.projects = data["data"]);
});