aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/layout.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2024-01-19 12:49:22 -0500
committerSebastien Castiel <sebastien@castiel.me>2024-01-19 12:49:22 -0500
commit1b1ebf015e0ad00c10d35eb7e7ba50288aea0c13 (patch)
tree9403cd384749d331d5f883177a0ceb973473fac3 /src/app/layout.tsx
parentc138afadb9a7c6e04113ea6a7fd19d0f46050e68 (diff)
Bring back NEXT_PUBLIC_BASE_URL (continued)
Diffstat (limited to 'src/app/layout.tsx')
-rw-r--r--src/app/layout.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 9447a84..7d95d6e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -3,12 +3,14 @@ import { ThemeProvider } from '@/components/theme-provider'
import { ThemeToggle } from '@/components/theme-toggle'
import { Button } from '@/components/ui/button'
import { Toaster } from '@/components/ui/toaster'
+import { env } from '@/lib/env'
import type { Metadata, Viewport } from 'next'
import Image from 'next/image'
import Link from 'next/link'
import './globals.css'
export const metadata: Metadata = {
+ metadataBase: new URL(env.NEXT_PUBLIC_BASE_URL),
title: {
default: 'Spliit · Share Expenses with Friends & Family',
template: '%s · Spliit',