I followed this existing post about seeing a custom icon while in development:
Unfortunately, I am still not able to get mine to work. I have the resources folder and I have a png file in there. Here is my panel.
constructor(client: EditorClient, modelManager: ModelManager) {
super(client, {
title: 'Quodsi Model',
url: 'quodsim-react/index.html?panel=model', // Query param helps the React app identify which panel it is
location: PanelLocation.RightDock,
iconUrl: 'http://localhost:9900/resources/quodsi-icon1.png',
width: 300
});I still see broken link image. Thoughts?
Thanks, Dan