AniX/frontend/app/api/config.js
Kentai Radiquum 37d4b181f5
changelog:
backend:
- Change index POST requests to GET requests

frontend:
- Fetch releases from api endpoint on index page.
- Add filters on main page.
- Remove tailwindcss
2024-04-20 00:39:15 +05:00

10 lines
No EOL
282 B
JavaScript

export const API_URL = "http://anix.test.local/api";
export const endpoints = {
index: {
last: `${API_URL}/index/last`,
ongoing: `${API_URL}/index/ongoing`,
announce: `${API_URL}/index/announce`,
finished: `${API_URL}/index/finished`,
},
};