@@ -88,9 +88,6 @@ export const env = createEnv({
8888 // Monitoring & Analytics
8989 TELEMETRY_ENDPOINT : z . string ( ) . url ( ) . optional ( ) , // Custom telemetry/analytics endpoint
9090 COST_MULTIPLIER : z . number ( ) . optional ( ) , // Multiplier for cost calculations
91- SENTRY_ORG : z . string ( ) . optional ( ) , // Sentry organization for error tracking
92- SENTRY_PROJECT : z . string ( ) . optional ( ) , // Sentry project for error tracking
93- SENTRY_AUTH_TOKEN : z . string ( ) . optional ( ) , // Sentry authentication token
9491 LOG_LEVEL : z . enum ( [ 'DEBUG' , 'INFO' , 'WARN' , 'ERROR' ] ) . optional ( ) , // Minimum log level to display (defaults to ERROR in production, DEBUG in development)
9592
9693 // External Services
@@ -209,7 +206,6 @@ export const env = createEnv({
209206 NEXT_PUBLIC_VERCEL_URL : z . string ( ) . optional ( ) , // Vercel deployment URL for preview/production
210207
211208 // Client-side Services
212- NEXT_PUBLIC_SENTRY_DSN : z . string ( ) . url ( ) . optional ( ) , // Sentry DSN for client-side error tracking
213209 NEXT_PUBLIC_SOCKET_URL : z . string ( ) . url ( ) . optional ( ) , // WebSocket server URL for real-time features
214210
215211 // Asset Storage
@@ -257,7 +253,6 @@ export const env = createEnv({
257253 experimental__runtimeEnv : {
258254 NEXT_PUBLIC_APP_URL : process . env . NEXT_PUBLIC_APP_URL ,
259255 NEXT_PUBLIC_VERCEL_URL : process . env . NEXT_PUBLIC_VERCEL_URL ,
260- NEXT_PUBLIC_SENTRY_DSN : process . env . NEXT_PUBLIC_SENTRY_DSN ,
261256 NEXT_PUBLIC_BLOB_BASE_URL : process . env . NEXT_PUBLIC_BLOB_BASE_URL ,
262257 NEXT_PUBLIC_BILLING_ENABLED : process . env . NEXT_PUBLIC_BILLING_ENABLED ,
263258 NEXT_PUBLIC_GOOGLE_CLIENT_ID : process . env . NEXT_PUBLIC_GOOGLE_CLIENT_ID ,
0 commit comments