From cc17e7e641806b7fef2dbeb19e545e8e9177f769 Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Sun, 16 Oct 2022 20:31:16 +0200 Subject: [PATCH] fix: remove unused env variable --- frontend/next.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/next.config.js b/frontend/next.config.js index f78b7433..16030c99 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -5,7 +5,6 @@ const nextConfig = { ALLOW_REGISTRATION: process.env.ALLOW_REGISTRATION, SHOW_HOME_PAGE: process.env.SHOW_HOME_PAGE, MAX_FILE_SIZE: process.env.MAX_FILE_SIZE, - BACKEND_URL: process.env.BACKEND_URL, } }