This is my folder structure:
These are my files:
/* index.html */
<body>
<h1>Modules</h1>
<script type="module" src="./index.js"></script>
</body>
// index.js
import fruits from "./fruits";
console.log(fruits);
// fruits.js
const arr = ["Mango", "Appple", "Banana", "Guava"];
export default arr;
Everything looks fine to me, still I am getting the error: net::ERR_ABORTED 404 (Not Found)
.