We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb553b6 + 9ab4c31 commit d97ffdbCopy full SHA for d97ffdb
src/app/login/page.tsx
@@ -1,12 +1,11 @@
1
import { Metadata } from "next";
2
import dynamic from "next/dynamic";
3
4
-import LoginContent from "./LoginContent";
5
-
6
const KakaoScriptLoader = dynamic(() => import("@/lib/ScriptLoader/KakaoScriptLoader"), {
7
ssr: false,
8
loading: () => null,
9
});
+const LoginContent = dynamic(() => import("./LoginContent"), { ssr: false });
10
11
export const metadata: Metadata = {
12
title: "로그인",
0 commit comments