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;