AniX/frontend/app/api/config.js
Kentai Radiquum d97ad7dbfe
feat(deploy): allow deploying on deta.space
- **BREAKING CHANGE**: Api url now /api/v1 \n **Fix**: Frontend build. \n **Fix**: errors about unknown styles

BREAKING CHANGE:
2024-05-13 22:20:08 +05:00

26 lines
776 B
JavaScript

export let API_URL = "/api/v1";
export const endpoints = {
index: {
last: `${API_URL}/index/last`,
ongoing: `${API_URL}/index/ongoing`,
announce: `${API_URL}/index/announce`,
finished: `${API_URL}/index/finished`,
},
search: `${API_URL}/search`,
user: {
profile: `${API_URL}/profile`,
auth: `${API_URL}/auth`,
bookmarks: {
list: `${API_URL}/bookmarks/list`,
history: `${API_URL}/bookmarks/history`,
watching: `${API_URL}/bookmarks/watching`,
planned: `${API_URL}/bookmarks/planned`,
watched: `${API_URL}/bookmarks/watched`,
delayed: `${API_URL}/bookmarks/delayed`,
abandoned: `${API_URL}/bookmarks/abandoned`,
},
favorites: `${API_URL}/favorites`,
},
release: `${API_URL}/release`,
};