Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not loading font icons #5

Closed
Zakarya-Netlinks opened this issue Apr 7, 2022 · 1 comment
Closed

Not loading font icons #5

Zakarya-Netlinks opened this issue Apr 7, 2022 · 1 comment

Comments

@Zakarya-Netlinks
Copy link

I am using iconsax font icon and font is not being loaded into the browser.

This is my folder directory
image

And this is my nuxt config:
image

And fonts are loaded like this:
image

they are broken 😔

@ivodolenc
Copy link
Owner

Hi,

I just tested the module and the nuxt-font-loader works fine.

The font you mentioned isn't valid so it needs to be converted and then will work fine. (follow #16 and #19).

Font displays errors in console:

Failed to decode downloaded font: http://localhost:5500/fonts/iconsax.woff
OTS parsing error: cmap: Failed to parse table

Here's an example that works great if you have valid font (after conversion):

project structure
.
├── static/
│   └── fonts/
│       ├── style.css
│       └── all font files (woff2, ttf...)
└── nuxt.config.js
// nuxt.config.js

export default {
  buildModules: ['nuxt-font-loader'],

  fontLoader: {
    url: {
      local: '/fonts/style.css',
      google: 'https://fonts.googleapis.com/css2?family=Manrope&display=swap'
    }
  }
}
<!-- index.vue -->

<template>
  <div>
    <span class="isax isax-dcube"></span>
  </div>
</template>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants