Removed builtin static video file

Switched from CORS to proxy for dev
This commit is contained in:
2023-07-10 17:14:36 +03:00
parent c2ee2f5b02
commit dcd91cb9b4
5 changed files with 16 additions and 18 deletions

View File

@ -10,13 +10,10 @@ const useFetch = (url, params, initialData) => {
.then(res => {
if (!res.ok) {
switch (res.status) {
case 401: {
case 401:
throw new Error("Ошибка авторизации")
}
case 404: {
new Error("Объект не найден")
}
break
case 404:
throw new Error("Объект не найден")
default: {
throw new Error("Ошибка ответа от сервера")
}
@ -32,6 +29,10 @@ const useFetch = (url, params, initialData) => {
.catch(err => {
setError("Ошибка сети")
setLoading(false)
if (import.meta.env.DEV) {
console.log(url, params, err)
}
})
}, [url, params])