External font access from SVG image

Had tried to create macro for confluence which loads SVG image from external site. It works OK. But when there is fonts that need to load from SVG image data, it is not showing correctly.

Here is the snippet for the manifest.yaml

...
permissions:
  external:
    fetch:
      backend:
        - kroki.io
    fonts:
        - 'https://excalidraw.com'

So the macro is getting the SVG image from kroki.io, and the resulting SVG image contains link to the external font. Here is the snippet of the SVG image data

...
  <defs>
    <style>
      @font-face {
        font-family: "Virgil";
        src: url("https://excalidraw.com/FG_Virgil.woff2");
      }
      @font-face {
        font-family: "Cascadia";
        src: url("https://excalidraw.com/Cascadia.woff2");
      }
    </style>
  </defs>
...

Already put external font access for excalidraw.com, but still not working as expected

Hi @EddyYuniarWaluyo,

What specific error are you seeing here? Is there anything in the browser console when you try to display the SVG?