Skip to content

Commit

Permalink
fix: fonts prefetch
Browse files Browse the repository at this point in the history
  • Loading branch information
Ni55aN committed Mar 3, 2024
1 parent e623ed9 commit dadf638
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ export default defineNuxtConfig({
link: [
{ rel: 'icon', href: '/favicon.ico', sizes: 'any' },
{
rel: 'preload', href: './fonts/Ubuntu-Regular.woff2', as: 'font', type: 'font/woff2', crossorigin: '',
rel: 'preload', href: '/fonts/Ubuntu-Regular.woff2', as: 'font', type: 'font/woff2', crossorigin: '',
},
{
rel: 'preload', href: './fonts/Ubuntu-Bold.woff2', as: 'font', type: 'font/woff2', crossorigin: '',
rel: 'preload', href: '/fonts/Ubuntu-Bold.woff2', as: 'font', type: 'font/woff2', crossorigin: '',
},
],
meta: [
Expand Down

0 comments on commit dadf638

Please sign in to comment.