Strapi : How to add the URL prefix (strapi endpoint) to my images URLs?

Hi,
I was used to create my images URLs with the Strapi endpoint global variable. But I can’t edit the URL divhunt variable anymore to add the prefix ${strapi->get(‘endpoint’,‘’)}${ .
Expected result is:

${strapi->get('endpoint','')}${page->get('data')->get('data')->get('attributes')->get('image')->get('data')->get('attributes')->get('url')}

How can I achieve this with the new UI?
site: informatel-lab.divhunt.art page “APropos”

You still can, just remove it
image

And then write it manually.

If you write in with curly brackets like this > ${strapi->} then it won’t convert to UI way. But if you write like $strapi-> then it wil.

1 Like

Ok thanks @dejan. I’ll do that.