We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 163ff79 commit 899362bCopy full SHA for 899362b
1 file changed
src/lib/scanUtils.ts
@@ -341,9 +341,9 @@ export async function scanDirectory(
341
if (
342
file.size < maxContentSize &&
343
isTextFile(file) &&
344
- file.size < 100 * 1024
+ file.size < 1 * 1024 * 1024
345
) {
346
- // 只读取小于100KB的文本文件
+ // 只读取小于1MB的文本文件
347
try {
348
entry.content = await file.text();
349
} catch (contentError) {
0 commit comments