Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
virtual-designer committed Feb 9, 2024
1 parent 4459ee8 commit a1d73d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const metadata: Metadata = {
title: "SudoBot Extensions",
description:
"Explore and install officially supported extensions for SudoBot",
metadataBase: new URL(process.env.NEXT_PUBLIC_METADATA_BASEURL!),
metadataBase: process.env.NEXT_PUBLIC_METADATA_BASEURL ? new URL(process.env.NEXT_PUBLIC_METADATA_BASEURL) : undefined,
};

export default function RootLayout({
Expand Down

0 comments on commit a1d73d1

Please sign in to comment.