I just cannot get this to work. Not even locally.
I'm using Supabase so the whole environment locally runs in Docker.
import { configSync } from "https://deno.land/std@0.167.0/dotenv/mod.ts";
import "https://deno.land/std@0.167.0/dotenv/load.ts";
console.log(configSync())
console.log(Deno.env.get("ENVIRONMENT"))
console.log("Hello from Functions!")```
This is the beginning of the code and below is the output:
```Serving supabase/functions/hello-world
Watcher Process started.
{
JWT_SECRET: "secret",
DENO_ORIGIN: "http://host.docker.internal:8082",
VERIFY_JWT: "true"
}
undefined
Hello from Functions!```
Not really sure where to start my troubleshooting.