remove frontend env parsing

This commit is contained in:
miloschwartz
2025-11-14 12:25:32 -05:00
parent e6e80f6fc7
commit 5b31bbce8d
2 changed files with 83 additions and 152 deletions

View File

@@ -1,13 +1,6 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
import { pullEnv } from "./src/lib/pullEnv";
// validate env variables on local dev
if (process.env.NODE_ENV === "development") {
pullEnv();
}
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {