Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions proxy/proxy.const.mjs
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
//set the url of the server you want to test your code with and start the development server using the following command:
// ng serve --proxy-config ./proxy/proxy.conf.mjs
const environments = {
'example': 'https://myPrimoVE.com',
'sqa03-eu01': 'https://sqa03-eu01.alma.exlibrisgroup.com',
'sqa-na03': 'https://sqa-na03.alma.exlibrisgroup.com/',
'sqa-eu03': 'https://sqa-eu03.alma.exlibrisgroup.com/',
'sqa-cn01': 'https://sqa-cn01.alma.exlibrisgroup.com.cn/'
'example': 'https://myPrimoVE.com'
};

export const PROXY_TARGET = environments['sqa-cn01'];
export const PROXY_TARGET = environments['example'];
console.log(`[proxy] Active proxy target: ${PROXY_TARGET}`);