Skip to content

Commit

Permalink
hardcode baseUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
technophile-04 committed Mar 15, 2024
1 parent f052b1d commit 891da0e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/nextjs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ import { ScaffoldEthAppWithProviders } from "~~/components/ScaffoldEthAppWithPro
import { ThemeProvider } from "~~/components/ThemeProvider";
import "~~/styles/globals.css";

const baseUrl = process.env.VERCEL_URL
? `https://${process.env.VERCEL_URL}`
: `http://localhost:${process.env.PORT || 3000}`;
const baseUrl = "https://grants.buidlguidl.com";
const imageUrl = `${baseUrl}/thumbnail.png`;

export const metadata: Metadata = {
Expand Down

0 comments on commit 891da0e

Please sign in to comment.