diff --git a/frontend/.env-example b/frontend/.env-example index 563b8dc92..8e5b8de1b 100644 --- a/frontend/.env-example +++ b/frontend/.env-example @@ -11,4 +11,5 @@ NUXT_PUBLIC_V1_DOMAIN: "" NUXT_PUBLIC_LOG_FILE: "" NUXT_PUBLIC_CHAIN_ID_BY_DEFAULT: "" NUXT_PUBLIC_MAINTENANCE_TS: "1717700652" +NUXT_PUBLIC_DEPLOYMENT_TYPE: "development" PRIVATE_SSR_SECRET: "" diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index 8c932276c..81bb64d3a 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -78,6 +78,7 @@ export default defineNuxtConfig({ apiClient: process.env.PUBLIC_API_CLIENT, apiKey: process.env.PUBLIC_API_KEY, chainIdByDefault: process.env.PUBLIC_CHAIN_ID_BY_DEFAULT, + deploymentType: process.env.PUBLIC_DEPLOYMENT_TYPE, domain: process.env.PUBLIC_DOMAIN, gitVersion, legacyApiClient: process.env.PUBLIC_LEGACY_API_CLIENT,