I think we might finally have the env crap figured out

This commit is contained in:
2026-03-21 17:20:57 -05:00
parent 1e61e34fb8
commit 5e37d10300
6 changed files with 15 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
import type { Metadata, Viewport } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import { env } from '@/env.js';
import { env } from '@/env';
import '@/app/styles.css';
@@ -39,7 +39,7 @@ const RootLayout = ({
return (
<ConvexAuthNextjsServerProvider>
<PlausibleProvider
domain={env.NEXT_PUBLIC_SITE_URL}
domain={env.NEXT_PUBLIC_SITE_URL.trim().replace(/^https?:\/\//, '')}
customDomain={env.NEXT_PUBLIC_PLAUSIBLE_URL}
>
<html lang='en' suppressHydrationWarning>