Trying to get stuff working

This commit is contained in:
2026-03-21 16:22:46 -05:00
parent 07dc8d7976
commit 1e61e34fb8
3 changed files with 4 additions and 8 deletions

View File

@@ -4,7 +4,7 @@
"type": "module", "type": "module",
"private": true, "private": true,
"scripts": { "scripts": {
"build": "bun next build", "build": "bun with-env next build",
"build:env": "bun with-env next build", "build:env": "bun with-env next build",
"clean": "git clean -xdf .cache .next .turbo node_modules", "clean": "git clean -xdf .cache .next .turbo node_modules",
"dev": "bun with-env next dev --turbo", "dev": "bun with-env next dev --turbo",

View File

@@ -15,6 +15,7 @@ import * as Sentry from '@sentry/nextjs';
import PlausibleProvider from 'next-plausible'; import PlausibleProvider from 'next-plausible';
import { Button, ThemeProvider, Toaster } from '@gib/ui'; import { Button, ThemeProvider, Toaster } from '@gib/ui';
import { env } from '@/env.js';
export const metadata: Metadata = generateMetadata(); export const metadata: Metadata = generateMetadata();
@@ -45,8 +46,8 @@ const GlobalError = ({ error, reset = undefined }: GlobalErrorProps) => {
}, [error]); }, [error]);
return ( return (
<PlausibleProvider <PlausibleProvider
domain='convexmonorepo.gbrown.org' domain={env.NEXT_PUBLIC_SITE_URL}
customDomain='https://plausible.gbrown.org' customDomain={env.NEXT_PUBLIC_PLAUSIBLE_URL}
> >
<html lang='en' suppressHydrationWarning> <html lang='en' suppressHydrationWarning>
<body <body

View File

@@ -1,8 +1,3 @@
import Image from 'next/image';
import Link from 'next/link';
import { Button } from '@gib/ui/button';
export function CTA() { export function CTA() {
return ( return (
<section className='container mx-auto px-4 py-24'> <section className='container mx-auto px-4 py-24'>