From bdb710ab435370387573a58038c62cce0b5a9c96 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 23 Feb 2025 20:04:38 -0600 Subject: [PATCH] chore: Remove dotenv import from Deno server --- deno/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/deno/index.ts b/deno/index.ts index 3045687..57415ae 100644 --- a/deno/index.ts +++ b/deno/index.ts @@ -1,4 +1,3 @@ -import "jsr:@std/dotenv/load"; import { serveFile } from "jsr:@std/http/file-server"; const PORT = Deno.env.get("PORT") || 8000;