Skip to content

Commit d6623fd

Browse files
authored
add base url to head
Signed-off-by: Neha Gupta <[email protected]>
1 parent 451ae62 commit d6623fd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/layout.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ export default function RootLayout({
5050
return (
5151
<html lang="en">
5252
<head>
53-
<base href="https://keploy-websites.vercel.app/">
5453
<title>{finalMetadata.title}</title>
5554
<meta name="keywords" content={finalMetadata.keywords} />
5655
<meta name="description" content={finalMetadata.description} />
@@ -166,6 +165,9 @@ export default function RootLayout({
166165
`,
167166
}}
168167
/>
168+
<Head>
169+
<base href="https://keploy-websites.vercel.app/" />
170+
</Head>
169171
</head>
170172
<body
171173
className={`${inter.variable} font-inter antialiased bg-white text-gray-900 tracking-tight`}

0 commit comments

Comments
 (0)