Merge branch 'main' into fix/package-manager

This commit is contained in:
Justin Edmund 2025-08-31 12:30:41 -07:00 committed by GitHub
commit c99c2bf1e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -16,6 +16,8 @@ const httpClient = axios.create({
// Keep connections alive to reduce socket churn // Keep connections alive to reduce socket churn
httpAgent: new http.Agent({ keepAlive: true, maxSockets: 50 }), httpAgent: new http.Agent({ keepAlive: true, maxSockets: 50 }),
httpsAgent: new https.Agent({ keepAlive: true, maxSockets: 50 }), httpsAgent: new https.Agent({ keepAlive: true, maxSockets: 50 }),
// Do not throw on HTTP status by default; let callers handle
validateStatus: () => true,
}); });
// Utility to get auth token from cookies on the server // Utility to get auth token from cookies on the server

View file

@ -118,5 +118,6 @@
"@tiptap/extension-mention": { "@tiptap/extension-mention": {
"@tiptap/suggestion": "^2.1.16" "@tiptap/suggestion": "^2.1.16"
} }
} },
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
} }