diff options
author | Alan Pearce | 2024-04-01 20:11:44 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-01 20:11:44 +0200 |
commit | 53d704777f8899b8750b083cef47b8fdf5830373 (patch) | |
tree | ab3f2cfced000d0459121184c154c235ae57c7db /src/app.ts | |
parent | 734fbe8444db4454953663dd263a5778f8742eeb (diff) | |
download | website-53d704777f8899b8750b083cef47b8fdf5830373.tar.lz website-53d704777f8899b8750b083cef47b8fdf5830373.tar.zst website-53d704777f8899b8750b083cef47b8fdf5830373.zip |
Use import.meta instead of Bun to get envvars
Diffstat (limited to 'src/app.ts')
-rw-r--r-- | src/app.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/app.ts b/src/app.ts index cdabb3a..0f8f08d 100644 --- a/src/app.ts +++ b/src/app.ts @@ -8,15 +8,17 @@ import log from "loglevel"; import config from "./config"; -log.setLevel((Bun.env.LOG_LEVEL || "info") as log.LogLevelDesc); +log.setLevel((import.meta.env.LOG_LEVEL || "info") as log.LogLevelDesc); Sentry.init({ - release: `homestead@${Bun.env.FLY_MACHINE_VERSION}`, + release: `homestead@${import.meta.env.FLY_MACHINE_VERSION}`, tracesSampleRate: 1.0, }); const expectedHostURL = new URL( - Bun.env.NODE_ENV === "production" ? config.base_url : "http://localhost:3000", + import.meta.env.NODE_ENV === "production" + ? config.base_url + : "http://localhost:3000", ); const defaultHeaders = { ...config.extra.headers, |