Image finally builds. Not perfect though

This commit is contained in:
2026-03-20 19:46:30 -05:00
parent 60dc57ddf7
commit 0ecf6238de
6 changed files with 7 additions and 8 deletions

View File

@@ -1,6 +1,5 @@
import { createEnv } from '@t3-oss/env-nextjs';
import { z } from 'zod/v4';
import { process } from 'zod/v4/core';
export const env = createEnv({
shared: {
@@ -36,7 +35,6 @@ export const env = createEnv({
experimental__runtimeEnv: {
NODE_ENV: process.env.NODE_ENV,
CI: process.env.CI,
SENTRY_AUTH_TOKEN: process.env.SENTRY_AUTH_TOKEN,
NEXT_PUBLIC_SITE_URL: process.env.NEXT_PUBLIC_SITE_URL,
NEXT_PUBLIC_CONVEX_URL: process.env.NEXT_PUBLIC_CONVEX_URL,
NEXT_PUBLIC_PLAUSIBLE_URL: process.env.NEXT_PUBLIC_PLAUSIBLE_URL,

View File

@@ -1,7 +1,7 @@
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from '@sentry/nextjs';
import { env } from './env.js';
import { env } from '@/env';
Sentry.init({
dsn: env.NEXT_PUBLIC_SENTRY_DSN,

View File

@@ -1,6 +1,6 @@
import * as Sentry from '@sentry/nextjs';
import { env } from './env.js';
import { env } from '@/env';
Sentry.init({
dsn: env.NEXT_PUBLIC_SENTRY_DSN,