Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
deetz99 committed Jan 13, 2025
1 parent 97233cc commit 4c29f6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
10 changes: 2 additions & 8 deletions strr-base-web/app/types/strr-base-app-config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ declare module 'nuxt/schema' {
},
sbcWebMsg: {
enable: boolean,
allowedRoutes: string[] | undefined,
genesysUrl: string,
genesysEnvironmentKey: string,
genesysDeploymentKey: string
allowedRoutes: string[] | undefined
}
}
}
Expand All @@ -47,10 +44,7 @@ declare module 'nuxt/schema' {
},
sbcWebMsg: {
enable: boolean,
allowedRoutes: string[] | undefined,
genesysUrl: string,
genesysEnvironmentKey: string,
genesysDeploymentKey: string
allowedRoutes: string[] | undefined
}
}
}
Expand Down
9 changes: 3 additions & 6 deletions strr-base-web/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,9 @@ export default defineNuxtConfig({
housingStrrUrl: process.env.NUXT_REGISTRY_HOME_URL, // TODO: update to NUXT_HOUSING_STRR_URL once we get the housing strr url set
declineTosRedirectUrl: process.env.NUXT_DECLINE_TOS_REDIRECT_URL,
bcGovStrrUrl: process.env.NUXT_BCGOV_STRR_URL,
genesysUrl: 'https://apps.cac1.pure.cloud/genesys-bootstrap/genesys.min.js',
genesysEnvironmentKey: 'prod-cac1',
genesysDeploymentKey: '1c8e851a-5bc8-4d50-bc7b-2f6365e04124'
// genesysUrl: process.env.NUXT_GENESYS_URL,
// genesysEnvironmentKey: process.env.NUXT_GENESYS_ENVIRONMENT_KEY || '',
// genesysDeploymentKey: process.env.NUXT_GENESYS_DEPLOYMENT_KEY || ''
genesysUrl: process.env.NUXT_GENESYS_URL,
genesysEnvironmentKey: process.env.NUXT_GENESYS_ENVIRONMENT_KEY || '',
genesysDeploymentKey: process.env.NUXT_GENESYS_DEPLOYMENT_KEY || ''
// set by layer - still required in .env
// keycloakAuthUrl - NUXT_KEYCLOAK_AUTH_URL
// keycloakClientId - NUXT_KEYCLOAK_CLIENTID
Expand Down

0 comments on commit 4c29f6e

Please sign in to comment.