Skip to content

Hosting Stripo Editor Files on Your Own CDN

Stripo's static files are hosted on Stripo servers and can be accessed via the following URL:
https://plugins.stripo.email/resources/uieditor/latest/UIEditor.js

To enhance the loading speed of the source files, you have the option to set up your own Content Delivery Network (CDN) and host the editor's static files there.

The static files required for the UI Editor can be found in Stripo's GitHub repository. In the repository, navigate to the main branch and locate the static folder. This folder contains the latest release of static files.

You may copy these files and save them on your server. It is required to maintain the same structure (on the same level as they are in the repository), meaning the encapsulation of the files should remain unchanged.

Once the files are on your server, you need to change the URL to the UIEditor.js script from ours to your server. For example:

html
<script
    id="UiEditorScript"
    type="module"
    src="https://your-server.com/path-to-static-files/UIEditor.js"
></script>

Please note that while you can cache all these files on your server, the UIEditor.js script should not be cached to ensure you are always using the latest version.