My react project has some areas where we want to use third-party tools (articulate storyline) which creates a HTML5 page (along with its media resources). If we place that folder on our web server separate from the react project or point the iframe to a youtube URL all is fine.
If we place the folder in \public or \src, how can we suppress react handling of the file or folder. What is happening is it recursively showing the react app instead of the wished for file.
<div class="iframe-container">
<iframe
width="560"
height="315"
src="../../Public/Buckconverter/story.html"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
loading="lazy"
allowfullscreen
></iframe>
</div>
I have reviewed: How add raw html file to public folder in create-react-app
and