删除调试打印信息

This commit is contained in:
PingChuan
2025-07-02 10:28:47 +08:00
parent ce851cc448
commit 6698542839
2 changed files with 422 additions and 72 deletions
+6 -6
View File
@@ -36,12 +36,12 @@ const getDifyApiUrl = () => {
const getAppId = () => {
const rawAppId = getEnvVar('NEXT_PUBLIC_APP_ID', '');
const extractedAppId = extractAppId(rawAppId);
console.log('🔧 Chat Config Debug:', {
rawAppId,
extractedAppId,
difyApiUrl: getDifyApiUrl(),
hasApiKey: !!getEnvVar('NEXT_PUBLIC_APP_KEY', ''),
});
// console.log('🔧 Chat Config Debug:', {
// rawAppId,
// extractedAppId,
// difyApiUrl: getDifyApiUrl(),
// hasApiKey: !!getEnvVar('NEXT_PUBLIC_APP_KEY', ''),
// });
return extractedAppId;
};