From e6521ab47182c256ddcb0ce79e29b41f77506c54 Mon Sep 17 00:00:00 2001 From: Dongho Shin Date: Sat, 2 Dec 2023 18:03:37 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=ED=8F=B0=ED=8A=B8=20CDN=20?= =?UTF-8?q?=EB=B0=A9=EC=8B=9D=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD=20(#2?= =?UTF-8?q?59)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 6 ++++++ src/App.tsx | 2 -- src/theme/typography/fonts.tsx | 19 ------------------- 3 files changed, 6 insertions(+), 21 deletions(-) delete mode 100644 src/theme/typography/fonts.tsx diff --git a/index.html b/index.html index 7ecec859..527b520c 100644 --- a/index.html +++ b/index.html @@ -16,6 +16,12 @@ content="upgrade-insecure-requests" /> 이력, 써 resume.me +
diff --git a/src/App.tsx b/src/App.tsx index dc978948..cd294145 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,7 +7,6 @@ import CONSTANTS from './constants/index'; import { ResumeMeErrorResponse } from './types/errorResponse'; import router from '~/routes/router'; import theme from '~/theme'; -import Fonts from '~/theme/typography/fonts'; const { toast } = createStandaloneToast({ theme }); @@ -48,7 +47,6 @@ const App = () => { theme={theme} toastOptions={{ defaultOptions: { position: 'top', duration: 2000 } }} > - diff --git a/src/theme/typography/fonts.tsx b/src/theme/typography/fonts.tsx deleted file mode 100644 index f8cacbd7..00000000 --- a/src/theme/typography/fonts.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import { Global } from '@emotion/react'; - -const Fonts = () => { - return ( - - ); -}; - -export default Fonts;