Use base URL for axios (#241)

* Switch site to use axios base url

* Fix team invites

* Fix find/replace setting the wrong thing

* Fix analytics being blocking, small issues
This commit is contained in:
Geometrically
2021-05-28 10:19:13 -07:00
committed by GitHub
parent 03cbab5267
commit 5017c5a5f1
25 changed files with 137 additions and 209 deletions

View File

@@ -20,7 +20,7 @@ export const actions = {
async fetchUser({ commit }, { token }) {
try {
const user = (
await this.$axios.get(`https://api.modrinth.com/api/v1/user`, {
await this.$axios.get(`user`, {
headers: {
Authorization: token,
},

View File

@@ -24,7 +24,7 @@ export const actions = {
) {
const notifications = (
await this.$axios.get(
`https://api.modrinth.com/api/v1/user/${rootState.auth.user.id}/notifications`,
`user/${rootState.auth.user.id}/notifications`,
rootState.auth.headers
)
).data