When creating a View feature (e.g. a board view), there are two options for hosting the html/js assets: (1) in my own iframe, or (2) uploading assets in a ZIP file.
The first option is fine, but in the second option the assets are hosted at https://64391103c33a0ba5.cdn2.monday.app/index.html or something similar.
To make a cross-domain request (to my own app’s backend), I need to whitelist 64391103c33a0ba5.cdn2.monday.app
on my backend as an allowed CORS origin. (Due to your iframe’s policy that cross-origin needs to be strict and not *)
That can work, but I haven’t been able to find out whether we should expect that URL to be consistent indefinitely.
Will the URL remain the same across all users, app versions etc, going forward? Or should we expect variations in any part of it, e.g. is there a cdn3 server that might serve these assets etc?