Can I use the embed tag to reference a PDF?
I was trying to create a simple app where the HTML was an embed tag referencing a single PDF. I got it to work in the dev environment, but the PDF does not load in production. Any thoughts on why this might be happening? index.html-- <embed src="Some_Random.pdf" width="900" height="975" type='application/pdf'> The PDF is…