debian-image-builder-frontend/devel/config/spandx/local-frontend-and-api.js
Gianluca Zuccarelli 7eb202e800 devel: remove frontend spandx proxy
Since the frontend uses its own webpack
proxy, these config options have been removed
from the spandx config and only the backend
proxy is being configured.
2022-07-14 17:59:54 +02:00

11 lines
164 B
JavaScript

/*global module*/
const API_PORT = 8086;
const routes = {
"/api/image-builder": {
host: `http://backend:${API_PORT}`
}
};
module.exports = { routes };