Bump max file size to 1MB (#633)

This commit is contained in:
Will Chen
2025-07-11 14:13:14 -07:00
committed by GitHub
parent d0eae9c991
commit 8518741c0c

View File

@@ -64,8 +64,8 @@ const OMITTED_FILES = [
".env", ".env",
]; ];
// Maximum file size to include (in bytes) - 100KB // Maximum file size to include (in bytes) - 1MB
const MAX_FILE_SIZE = 100 * 1024; const MAX_FILE_SIZE = 1000 * 1024;
// Maximum size for fileContentCache // Maximum size for fileContentCache
const MAX_FILE_CACHE_SIZE = 500; const MAX_FILE_CACHE_SIZE = 500;