From f4a2e8cbf9a4e4eed6eba91c84b65303365db795 Mon Sep 17 00:00:00 2001 From: Clement Date: Tue, 21 May 2024 16:15:46 +0200 Subject: [PATCH] fix: env var and conf file --- front/src/config.yaml | 4 ++-- front/src/env.d.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/front/src/config.yaml b/front/src/config.yaml index 8dab37c..eb6bf26 100644 --- a/front/src/config.yaml +++ b/front/src/config.yaml @@ -1,6 +1,6 @@ site: - name: AstroWind - site: 'https://astrowind.vercel.app' + name: EpicRoadTrip + site: 'https://front-tweb.cb85.fr' base: '/' trailingSlash: false diff --git a/front/src/env.d.ts b/front/src/env.d.ts index 8924c40..e697683 100644 --- a/front/src/env.d.ts +++ b/front/src/env.d.ts @@ -6,10 +6,10 @@ import PocketBase from 'pocketbase' export interface ImportMetaEnv { - NODE_ENV: string - APP_URL: string + NODE_ENV: string + APP_URL: string - POCKETBASE_URL: string + POCKETBASE_URL: string GOOGLE_API_KEY: string }