Skip to content

Commit

Permalink
Merge pull request #26 from LikeLion-KNU/bugfix/#25
Browse files Browse the repository at this point in the history
배포 시 폰트 적용되지 않는 현상
  • Loading branch information
junyeokk authored May 17, 2024
2 parents 4db00f4 + 0316723 commit 75f8c23
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/styles/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ export const GlobalStyle = createGlobalStyle`
@font-face {
font-family: "MesloLGS NF Bold";
src: url("/src/assets/MesloLGS-NF-Bold.ttf") format("truetype");
src: url("fonts/MesloLGS-NF-Bold.ttf") format("truetype");
}
@font-face {
font-family: "Blinker SemiBold";
src: url("/src/assets/Blinker-SemiBold.ttf") format("truetype");
src: url("fonts/Blinker-SemiBold.ttf") format("truetype");
}
@font-face {
font-family: "DM Sans";
src: url("/src/assets/DMSans-Medium.ttf") format("truetype");
src: url("fonts/DMSans-Medium.ttf") format("truetype");
}
body {
Expand Down

0 comments on commit 75f8c23

Please sign in to comment.