From 4060c10d924f9a63ff75a0fd9532d85d3943a528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Isaksen?= Date: Sat, 20 Aug 2022 23:40:16 +0200 Subject: [PATCH] feat: temporarily change env variable --- .env.development | 1 - .env.production | 1 - env.ts | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 .env.development delete mode 100644 .env.production diff --git a/.env.development b/.env.development deleted file mode 100644 index a37fabf..0000000 --- a/.env.development +++ /dev/null @@ -1 +0,0 @@ -NEXT_PUBLIC_READING_BASE_URI=https://www.oyvindis.com \ No newline at end of file diff --git a/.env.production b/.env.production deleted file mode 100644 index a37fabf..0000000 --- a/.env.production +++ /dev/null @@ -1 +0,0 @@ -NEXT_PUBLIC_READING_BASE_URI=https://www.oyvindis.com \ No newline at end of file diff --git a/env.ts b/env.ts index 1f66c6c..1c6c583 100644 --- a/env.ts +++ b/env.ts @@ -1,7 +1,7 @@ import { validateEnv } from './utils/common'; const NAMESPACE = process.env.NAMESPACE! ?? 'dev'; -const READING_BASE_URI = process.env.NEXT_PUBLIC_READING_BASE_URI! ?? 'https://www.oyvindis.com' +const READING_BASE_URI = process.env.NEXT_PUBLIC_READING_BASE_URI! ?? 'kotlin-service.dev.svc.cluster.local:8080' const env = { NAMESPACE,