Skip to content

Commit

Permalink
docs: fix basepath
Browse files Browse the repository at this point in the history
  • Loading branch information
pregno committed Nov 26, 2024
1 parent 5396181 commit dde8465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const metadata: Metadata = {
};

const getLink = (path: string) =>
`${publicRuntimeConfig.basePath || ''}${path}`;
`${publicRuntimeConfig?.basePath || ''}${path}`;

export default function RootLayout({
children,
Expand Down

0 comments on commit dde8465

Please sign in to comment.