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.
11 lines
164 B
JavaScript
11 lines
164 B
JavaScript
/*global module*/
|
|
|
|
const API_PORT = 8086;
|
|
|
|
const routes = {
|
|
"/api/image-builder": {
|
|
host: `http://backend:${API_PORT}`
|
|
}
|
|
};
|
|
|
|
module.exports = { routes };
|