Upon trying to import the d3.js library in a project that utilizes npm, I encountered the error message:
TypeError: Error resolving module specifier: d3
. This issue specifically occurred while using Firefox.
index.html
<!DOCTYPE html>
<html lang="en">
<header>
<meta charset="utf-8" />
<title>D3</title>
</header>
<body>
<div id="svg"></div>
<script src="./index.js" type="module"></script>
</body>
</html>
index.js
import * as d3 from "d3";