const BASE_URL = 'http://localhost:8000'; const AUTHORIZATION = '4a49332a-fc3e-11f0-bf0a-9457f8d645d9'; const CSRF_TOKEN = 'dcWLY6luSVuQu4mIlKNCGlk3i9VzG9n3p2pxihcm'; module.exports = { baseUrl: BASE_URL, registerPath: '/assets/store', updatePath: (tag) => `/assets/${encodeURIComponent(tag)}/edit`, updateMethod: 'POST', headers: { accept: 'application/json', Authorization: AUTHORIZATION, 'Content-Type': 'application/json', 'X-CSRF-TOKEN': CSRF_TOKEN } };