how to import @mdi/font to my vue3 project without vuetify?

Viewed 1984

I installed @mdi/font using npm i @mdi/font

But how can i import it to my vue3 Project? vite return warning:

[vite] dependency @mdi/font declares non-existent entry file D:\xxxx\node_modules\@mdi\font\index.js.

What should I do so that i can use mdi icons like this way <span class="mdi mdi-account-heart" aria-hidden="true"></span>

1 Answers

if you dont want to pack the font to your project,just add cdn link to your index.html in public folder like this:

enter image description here

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
Related