Skip to content

Commit f7be5f4

Browse files
add debugging
1 parent 678adf6 commit f7be5f4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/utils.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ export function cn(...inputs: ClassValue[]) {
2626
// > React will invalidate the cache for all memoized functions for each server request.
2727
export const getAppConfig = cache(async (headers: Headers): Promise<AppConfig> => {
2828
if (CONFIG_ENDPOINT) {
29+
console.log('getAppConfig');
30+
console.log('CONFIG_ENDPOINT', CONFIG_ENDPOINT);
31+
console.log('SANDBOX_ID', SANDBOX_ID);
32+
console.log('headers', headers);
33+
2934
const sandboxId = SANDBOX_ID ?? headers.get('x-sandbox-id') ?? '';
3035

3136
try {

0 commit comments

Comments
 (0)