diff --git a/src/tools/config/getFrontendConfig.ts b/src/tools/config/getFrontendConfig.ts index 719844d38..49124e97d 100644 --- a/src/tools/config/getFrontendConfig.ts +++ b/src/tools/config/getFrontendConfig.ts @@ -41,8 +41,6 @@ export const getFrontendConfig = async (name: string): Promise => { ); } - Consola.info(`Requested frontend content of configuration '${name}'`); - // If not, return the config const someAppsWithoutProps = config.apps.filter( (app) => app.integration?.properties.some( diff --git a/src/utils/api.ts b/src/utils/api.ts index 1163d6e2b..bb3a3b72e 100644 --- a/src/utils/api.ts +++ b/src/utils/api.ts @@ -42,7 +42,6 @@ const getTrpcConfiguration = () => ({ const getBaseUrl = () => { if (typeof window !== 'undefined') return ''; // browser should use relative url if (env.HOSTNAME) { - console.log('Constructing internal hostname address using', env.HOSTNAME, env.NEXT_PUBLIC_PORT); return `http://${env.HOSTNAME}:${env.NEXT_PUBLIC_PORT}`; } return `http://localhost:${env.NEXT_PUBLIC_PORT ?? 3000}`; // dev SSR should use localhost