base url moved

This commit is contained in:
nquidox 2025-10-01 11:01:27 +03:00
parent 693adf7af2
commit 309a823ddd
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,7 @@ import App from './App.vue'
import router from './router'
const app = createApp(App)
export const BASE_URL = 'http://localhost:9090/api/v2'
app.use(createPinia())
app.use(router)

View file

@ -1,6 +1,6 @@
import { useAuthStore } from '@/stores/authStore.js'
import { BASE_URL } from '@/main.js'
const BASE_URL = 'http://localhost:9000/api/v2'
let isRefreshing = false
let refreshPromise = null