remove comment

This commit is contained in:
Alex Holliday
2026-03-02 22:00:03 +00:00
parent 09534757a2
commit 3854931682
-3
View File
@@ -1,8 +1,5 @@
import { z } from "zod";
/**
* Environment variable schema with validation
*/
const envSchema = z.object({
// Server Configuration
NODE_ENV: z.enum(["development", "production", "test"]).default("development"),