chore: remove debug configuration

This commit is contained in:
Arvid Norlin
2024-07-01 11:03:25 +02:00
parent edc2216d83
commit 0657355f27
2 changed files with 0 additions and 7 deletions
-6
View File
@@ -9,8 +9,6 @@ export const env = createEnv({
*/
isServer: typeof window === "undefined" || "Deno" in window,
server: {
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: z.string(),
OTEL_EXPORTER_OTLP_TRACES_PROTOCOL: z.string(),
APPLICATION_INSIGHTS_CONNECTION_STRING: z.string(),
ADOBE_SCRIPT_SRC: z.string().optional(),
API_BASEURL: z.string(),
@@ -61,10 +59,6 @@ export const env = createEnv({
},
emptyStringAsUndefined: true,
runtimeEnv: {
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT:
process.env.OTEL_EXPORTER_OTLP_TRACES_ENDPOINT,
OTEL_EXPORTER_OTLP_TRACES_PROTOCOL:
process.env.OTEL_EXPORTER_OTLP_TRACES_PROTOCOL,
APPLICATION_INSIGHTS_CONNECTION_STRING:
process.env.APPLICATION_INSIGHTS_CONNECTION_STRING,
ADOBE_SCRIPT_SRC: process.env.ADOBE_SCRIPT_SRC,