I know this question has been asked before but none of those answers solved my issue. I'm currently getting the following error:
Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML spec.
The code giving me the error is
<script type="module">
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.2.0/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.2.0/firebase-analytics.js";
import {
getFirestore,
collection,
getDocs,
} from "/node_modules/firebase/firestore/lite";
</script>
I'm only using html and javascript. No additional javascript code is in the file, only these import statements. What should I do?