Magento – Magento 2.3 fresh installation issue : tinymce.js not load

magento2.3magento2.3.0

Loading failed for the with source “/pub/static/adminhtml/Magento/backend/en_GB/tinymce.js”.

enter image description here

Best Answer

search for text 'tinymce' in your web magento directory

2.3 not use tinymce anymore so somewhere in your web still use tinymce so you get this problem because magento can't find define tinymce

I think new version using 'tinymce4' or 'tinymceDeprecated'

the right way in magento 2.3.1 for use tinymce

define(['wysiwygAdapter'], function(wysiwyg){
   // Your code here
});
Related Topic