1294a177ae
This work was done with Claude. Added bundling of CSS & JS with WebPack. This also means minimization. --------- Co-authored-by: Martin Slachta <martin.slachta@outlook.com> Reviewed-on: #1
8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
/*
|
|
* Utilities for calling the API
|
|
*/
|
|
|
|
export function get_rest_url(resource) {
|
|
return ReservairServiceAPI.restUrl + '/' + resource;
|
|
}
|