Lucidchart plugin iframe doesn't render
Hello,
I am following this url about iframe Modal example, except I use a local html file under /public/forms
class releaseArchitectureModal extends Modal {
constructor(client: EditorClient) {
super(client, {
title: 'Release Architecture',
width: 800,
height: 600,
url: 'forms/releaseArchitectureForm.html',
});
}
The ifame shows up in developer mode and do its expected function, but it doesn’t show render the html content after installing the bundle. And I get this error in console

in fact exploring the html is empty in the browser resources.
Also I made sure the html file exist in the created zip file bundle

Are there any missing step I need to make in order to load the html file proberly?