about summary refs log tree commit diff stats
path: root/src/app.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.ts')
-rw-r--r--src/app.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.ts b/src/app.ts
index a3c1c2f..317b9c0 100644
--- a/src/app.ts
+++ b/src/app.ts
@@ -8,10 +8,10 @@ import log from "loglevel";
 
 import config from "./config";
 
-log.setLevel((import.meta.env.LOG_LEVEL || "info") as log.LogLevelDesc);
+log.setLevel((import.meta.env["LOG_LEVEL"] || "info") as log.LogLevelDesc);
 
 Sentry.init({
-  release: `homestead@${import.meta.env.FLY_MACHINE_VERSION}`,
+  release: `homestead@${import.meta.env["FLY_MACHINE_VERSION"]}`,
   tracesSampleRate: 1.0,
 });