Hello, I am trying to require a local js file and it keeps spitting out this error.
Require stack:``` I found a solution is to change the script's import line from ```<script src="../js/index.js" defer></script>``` to ```<script>require("../js/index.js")</script>``` which solves the issue but I am not able to defer the script load. Is there any way to defer the script load without losing the ability to import local js files