How can I set the Access-Control-Allow-Origin to '*' in the TMS debug server during development?
I am using a different API server and that blocks my requests
I used a different server in a different url but now I breakpoints inside the IDE do not work.
Finally I found that I must enable it in my REST API server that tms core project uses.
The TMS WEB Core web client app performs the HTTP requests to the REST API directly from the browser. It's not going via the (local debug) webserver the app is started from. You give no information about your REST server and what technology is used for the REST server. But it is in your REST server you'll need to enable CORS.
Also, when encountering problems, open a browser console (F12 shortcut) as there will be more detail about possible errors there.
Apologes for the trouble