I have created a sample blazor webAssembly applcation and wanted to load that in the container app created in blazor standalone webassembly.
I am using iframe to load the child app however it shows
chromewebdata/:1 Refused to display 'https://localhost:7239/' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
my code
@page "/"<h3>Main Container Application</h3><iframe width="560" height="315" src="https://localhost:7239/" frameborder="0"></iframe>