From 76a4b9bac68559dbc55372f868528400068a626d Mon Sep 17 00:00:00 2001 From: Lordmau5 Date: Fri, 25 May 2018 02:29:41 +0200 Subject: [PATCH] Update files to reflect new domain change --- index.html | 4 ++-- src/components/Home.vue | 2 +- src/components/News.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index b312e60..66b8ade 100644 --- a/index.html +++ b/index.html @@ -11,8 +11,8 @@ - - + +
diff --git a/src/components/Home.vue b/src/components/Home.vue index 8e1edf4..5badba6 100644 --- a/src/components/Home.vue +++ b/src/components/Home.vue @@ -239,7 +239,7 @@ export default { methods: { async fetchTeamMembers () { - let _t = await fetch('https://cors-anywhere.herokuapp.com/https://gitlab.com/Lordmau5/RyujiNX-Website-Public/raw/master/team/team.json'); + let _t = await fetch('https://ryujinx.org/public/team.json'); this.team = await _t.json(); this.loading = false; diff --git a/src/components/News.vue b/src/components/News.vue index d60835b..dbf0fdf 100644 --- a/src/components/News.vue +++ b/src/components/News.vue @@ -103,7 +103,7 @@ export default { methods: { async fetchArticles () { - let _a = await fetch('https://cors-anywhere.herokuapp.com/https://gitlab.com/Lordmau5/RyujiNX-Website-Public/raw/master/articles/articles.json'); + let _a = await fetch('https://ryujinx.org/public/articles.json'); this.articles = await _a.json(); this.loading = false;