Static Images in Custom Ui Jira App

I’m creating a Custom UI Jira App using Forge, i ahve to display and image in my react component, i ahve place that image in my public folder and aded to tag which is actually visible on my local setup but when i deploy app to development or staging the app is not showing app. i think its due to permission issue. i check the permission which is about adding url to 3rd party links but in my scenario i have images in my local folder. i am not even sure that if i can do that or not.
my current permissions are:

permissions:
  scopes:
    - 'storage:app'
    - 'read:jira-work'
    - 'read:jira-user'
    - 'manage:jira-project'
    - 'manage:jira-configuration'
  content:
    styles:
      - 'unsafe-inline'
    scripts:
      - 'unsafe-inline'
  external:
    images:
      - '*'
    fetch:
      backend:
        - 'https://producttriangle.atlassian.net'

Hi @HamzaSaqib,

I’d start by having a look at this page in the docs about static assets in custom ui apps:
https://developer.atlassian.com/platform/forge/custom-ui/#accessing-static-assets

Let me know how you go.

Cheers!
Mel