Add secure support connection to website (#5750)
* wip: icom jwts * should fix auth token passing * add to wrangler
This commit is contained in:
@@ -207,10 +207,19 @@ export default defineNuxtConfig({
|
||||
// @ts-ignore
|
||||
rateLimitKey: process.env.RATE_LIMIT_IGNORE_KEY ?? globalThis.RATE_LIMIT_IGNORE_KEY,
|
||||
pyroBaseUrl: process.env.PYRO_BASE_URL,
|
||||
intercomIdentitySecret:
|
||||
process.env.INTERCOM_IDENTITY_SECRET ||
|
||||
// @ts-ignore
|
||||
globalThis.INTERCOM_IDENTITY_SECRET,
|
||||
public: {
|
||||
apiBaseUrl: getApiUrl(),
|
||||
pyroBaseUrl: process.env.PYRO_BASE_URL,
|
||||
siteUrl: getDomain(),
|
||||
intercomAppId:
|
||||
process.env.INTERCOM_APP_ID ||
|
||||
// @ts-ignore
|
||||
globalThis.INTERCOM_APP_ID ||
|
||||
'ykeritl9',
|
||||
production: isProduction(),
|
||||
buildEnv: process.env.BUILD_ENV,
|
||||
preview: process.env.PREVIEW === 'true',
|
||||
|
||||
Reference in New Issue
Block a user