0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

refactor: fix application insights role names (#3498)

This commit is contained in:
Gao Sun 2023-03-19 13:38:34 +08:00 committed by GitHub
parent 1c436b887d
commit 43ed97a014
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ import { findUp } from 'find-up';
dotenv.config({ path: await findUp('.env', {}) });
const { appInsights } = await import('@logto/shared/app-insights');
appInsights.setup('logto-cloud-eu');
appInsights.setup('logto-cloud');
const { default: withAuth } = await import('./middleware/with-auth.js');
const { default: withHttpProxy } = await import('./middleware/with-http-proxy.js');

View file

@ -9,7 +9,7 @@ import SystemContext from './tenants/SystemContext.js';
dotenv.config({ path: await findUp('.env', {}) });
const { appInsights } = await import('@logto/shared/app-insights');
appInsights.setup('logto-cloud-eu');
appInsights.setup('logto');
// Import after env has been configured
const { loadConnectorFactories } = await import('./utils/connectors/index.js');