Cloud Configuration
The TinyMCE bundle supports loading TinyMCE from the Tiny Cloud CDN instead of the bundled version.
Configuration
Set the script_url parameter in the bundle configuration:
# config/packages/pimcore_tinymce.yaml
pimcore_tinymce:
script_url: "https://cdn.tiny.cloud/1/YOUR-API-KEY/tinymce/7/tinymce.min.js"
Replace YOUR-API-KEY with your Tiny Cloud API key.
When using the cloud CDN, the bundled OEM license key is not applied - your Tiny
Cloud API key handles licensing.
Fallback to Bundled Version
Without script_url (or when set to null), the bundle uses the bundled TinyMCE version:
# config/packages/pimcore_tinymce.yaml
pimcore_tinymce:
script_url: null # uses bundled version (default)
Cache Warmup Behavior
When a cloud URL is configured, the CopyCacheWarmer skips copying local TinyMCE
assets during cache warmup.