Skip to content

Commit

Permalink
hardcode envar and move on
Browse files Browse the repository at this point in the history
  • Loading branch information
neoxelox committed Nov 19, 2024
1 parent 25f8a24 commit 822abf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/app/_lib/buildMetatags.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { env } from '@latitude-data/env'
import type { Metadata, ResolvedMetadata } from 'next'

const DEFAULT_TITLE = 'The Open-Source LLM Development Platform'
Expand Down Expand Up @@ -26,7 +25,8 @@ export default function buildMetatags({
const metaDescription = description || DEFAULT_DESCRIPTION

return {
metadataBase: new URL(env.LATITUDE_URL),
// FIXME: use env.LATITUDE_URL (is broken when building production) instead
metadataBase: new URL('https://app.latitude.so'),
title: metaTitle,
description: metaDescription,
openGraph: {
Expand Down

0 comments on commit 822abf4

Please sign in to comment.