diff --git a/client/composables/useOpnApi.js b/client/composables/useOpnApi.js index 795bf44..92ac699 100644 --- a/client/composables/useOpnApi.js +++ b/client/composables/useOpnApi.js @@ -25,8 +25,6 @@ export function getOpnRequestsOptions(request, opts) { const config = useRuntimeConfig() - console.log('getOpnRequestsOptions', config, request, opts) - return { baseURL: config.public.apiBase, onResponseError({response}) { diff --git a/client/runtimeConfig.js b/client/runtimeConfig.js index bfb4240..d7a4bf5 100644 --- a/client/runtimeConfig.js +++ b/client/runtimeConfig.js @@ -1,17 +1,17 @@ export default { // Keys within public, will be also exposed to the client-side public: { - apiBase: '', - appUrl: '', - env: 'local', - hCaptchaSiteKey: null, - googleAnalyticsCode: null, - amplitudeCode: null, - sentryDsn: null, - crispWebsiteId: null, - aiFeaturesEnabled: false, - s3Enabled: false, - paidPlansEnabled: false, - customDomainsEnabled: false + apiBase: process.env.NUXT_PUBLIC_API_BASE ||'', + appUrl: process.env.NUXT_PUBLIC_APP_URL || '', + env: process.env.NUXT_PUBLIC_ENV || 'local', + hCaptchaSiteKey: process.env.NUXT_PUBLIC_H_CAPTCHA_SITE_KEY || null, + googleAnalyticsCode: process.env.NUXT_PUBLIC_GOOGLE_ANALYTICS_CODE || null, + amplitudeCode: process.env.NUXT_PUBLIC_AMPLITUDE_CODE || null, + sentryDsn: process.env.NUXT_PUBLIC_SENTRY_DSN || null, + crispWebsiteId: process.env.NUXT_PUBLIC_CRISP_WEBSITE_ID || null, + aiFeaturesEnabled: process.env.NUXT_PUBLIC_AI_FEATURES_ENABLED || false, + s3Enabled: process.env.NUXT_PUBLIC_S3_ENABLED || false, + paidPlansEnabled: process.env.NUXT_PUBLIC_PAID_PLANS_ENABLED || false, + customDomainsEnabled: process.env.NUXT_PUBLIC_CUSTOM_DOMAINS_ENABLED || false, } }