Skip to content

Commit

Permalink
fix: remove external font dependencies (#1642)
Browse files Browse the repository at this point in the history
  • Loading branch information
petertonysmith94 authored Jan 15, 2024
1 parent 14aebe7 commit b32dc96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .changeset/smart-lemons-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Binary file added apps/demo-nextjs/public/inter.ttf
Binary file not shown.
4 changes: 2 additions & 2 deletions apps/demo-nextjs/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import './globals.css'
import { Inter } from 'next/font/google'
import localFont from 'next/font/local'

const inter = Inter({ subsets: ['latin'] })
const inter = localFont({ src: '../../public/inter.ttf' })

export const metadata = {
title: 'Create Next App',
Expand Down

0 comments on commit b32dc96

Please sign in to comment.