Kraftbit / nova-tinymce5-editor

Nova TinyMCE 5 Editor is Laravel Nova field that integrates TinyMCE5 WYSIWYG editor.
https://kraftbit.com
5 stars 8 forks source link

Media library relative paths #2

Closed evansmwendwa closed 3 years ago

evansmwendwa commented 3 years ago

I have managd to integrate with media library however the image paths are relative, making it impossible to use in production and in REST API. Below is a sample HTML inserted

<div><img src="../../../../storage/group-2-1607800073z1BAO.png" /></div>

Any advise on how to use public absolute URLs instead

evansmwendwa commented 3 years ago

Found a fix by adding the following to init

'init' => [
            'relative_urls' => false,
            'remove_script_host' => false,
            'convert_urls' => true,
        ],