diff --git a/apps/nowait-user/index.html b/apps/nowait-user/index.html index bd53b5b..e4503e0 100644 --- a/apps/nowait-user/index.html +++ b/apps/nowait-user/index.html @@ -10,10 +10,9 @@
- - + src="https://oapi.map.naver.com/openapi/v3/maps.js?ncpKeyId=%VITE_NAVER_MAP_KEY%&submodules=gl&submodules=markerclustering" + > diff --git a/apps/nowait-user/src/firebaseConfig.ts b/apps/nowait-user/src/firebaseConfig.ts deleted file mode 100644 index 4f5d72e..0000000 --- a/apps/nowait-user/src/firebaseConfig.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { initializeApp } from "firebase/app"; -import { getPerformance } from "firebase/performance"; - -const firebaseConfig = { - apiKey: import.meta.env.VITE_FIREBASE_API_KEY, - authDomain: import.meta.env.VITE_FIREBASE_AUTH_DOMAIN, - projectId: import.meta.env.VITE_FIREBASE_PROJECT_ID, - appId: import.meta.env.VITE_FIREBASE_APP_ID, -}; - -const app = initializeApp(firebaseConfig); - -const perf: ReturnType | undefined = - typeof window !== "undefined" ? getPerformance(app) : undefined; - -export { app, perf };