include Cesium build from web address

1. A concise explanation of the problem you're experiencing.
Can I include the cesium build file from an online address?

2. A minimal code example. If you've found a bug, this helps us reproduce and repair it.
for example: I want to replace this: <script src="../Build/Cesium/Cesium.js"></script>

with this:
<script src="https://cesiumjs.org/Build/Cesium/Cesium.js"></script>

Is this possible?

3. Context. Why do you need to do this? We might know a better way to accomplish your goal.

I want to integrate Cesium with a WIX website.
On WIX I am able to embed html code but I cannot store the cesium build files on the WIX website. So I am trying to include it other ways.

4. The Cesium version you're using, your operating system and browser.

Hi there,

https://cesiumjs.org/Cesium/Build/Cesium/Cesium.js is updated with the latest version of Cesium, but it’s not an official CDN, so we don’t necessarily support any problems you may have when using that URL directly.

In your situation, I think I’d recommend using a specific version, like https://cesiumjs.org/releases/1.37/Build/Cesium/Cesium.js, so at least a new release doesn’t break anything on your site.

Thanks!

Gabby