Open EliJDonahue opened 6 years ago
Caused by CORS (cross-origin resource sharing). Source code needs to be updated to include cross origin headers in requests.
In the meantime, here are possible workarounds:
My chosen workaround while testing and documenting the add-in is to run Chrome via command prompt with the --disable-web-security flag:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-security --user-data-dir="c:/chromedev"
Note: Disabling browser security is not recommended for production scenarios.
The following steps will also avoid the CORS error:
Caused by CORS (cross-origin resource sharing). Source code needs to be updated to include cross origin headers in requests.
In the meantime, here are possible workarounds:
My chosen workaround while testing and documenting the add-in is to run Chrome via command prompt with the --disable-web-security flag:
Note: Disabling browser security is not recommended for production scenarios.