I installed tippy.js using npm and then it tried to import it into my .js file ,but I face an error.
HTML
<button id="my-button">btn</button>
<script type="module" src="./script.js"></script>
JS
import tippy from 'tippy.js';
import 'tippy.js/dist/tippy.css';
tippy('#my-button', {
content: "github",
arrow: true,
});
Note that I have checked the dependencies and made sure that the package is installed successfully.
Error:
