Skip to content

Commit

Permalink
Merge pull request #59 from eksqtr/development
Browse files Browse the repository at this point in the history
fixes on metadata image url changed to absolute url
  • Loading branch information
eksqtr authored Aug 27, 2024
2 parents cc3e863 + 6bea510 commit b0da141
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const metadata: Metadata = {
type: "website",
images: [
{
url: "/images/about.png",
url: `${process.env.APP_URL}/images/about.png`,
width: 1200,
height: 630,
alt: process.env.APP_TITLE,
Expand All @@ -30,9 +30,9 @@ export const metadata: Metadata = {
canonical: process.env.APP_URL,
},
icons: {
icon: "/favicon.ico",
shortcut: "/favicon.ico",
apple: "/favicon.ico",
icon: `${process.env.APP_URL}/favicon.ico`,
shortcut: `${process.env.APP_URL}/favicon.ico`,
apple: `${process.env.APP_URL}/favicon.ico`,
},
};

Expand All @@ -48,7 +48,7 @@ export default function RootLayout({
return (
<html lang="en">
<head>
<link rel="icon" href="/favicon.ico" />
<link rel="icon" href="/public/favicon.ico" />
{/* Include the Devicons CSS */}
<link
rel="stylesheet"
Expand Down

0 comments on commit b0da141

Please sign in to comment.