From 2cafccd91b19ce32276d69ca93a031f203817b2b Mon Sep 17 00:00:00 2001 From: minchodang Date: Sun, 19 May 2024 12:27:24 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20env=20=EC=97=85=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8=20=EB=B0=8F=20https=20policy=20meta=20=ED=83=9C?= =?UTF-8?q?=EA=B7=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 39 +++++++++++++++++++++++++++++++++++++++ src/app/layout.tsx | 4 ++++ 2 files changed, 43 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..24c7882 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# local env files +.env +.env.local +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2563e79..9499ea9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,7 @@ import GlobalModal from '@src/components/common/modal/GlobalModal'; import Toaster from '@src/components/common/toast/Toast'; import './globals.css'; import TanstackQueryProvider from '@src/provider/TanstackQueryProvider'; +import Head from 'next/head'; interface LocaleLayoutProps { children: React.ReactNode; @@ -10,6 +11,9 @@ interface LocaleLayoutProps { const LocaleLayout: FC = ({ children }) => ( + + + {children}