Skip to content

Commit a00ce22

Browse files
committed
Make explicit entry 10mb base, not 100mb
1 parent 033e52f commit a00ce22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/App.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ export class App {
287287
for (const e of Config.cache.explicitEntries) {
288288
const compositeKey = `${e.key}::${e.version}`;
289289
if (!targetsMap.has(compositeKey)) {
290-
targetsMap.set(compositeKey, { key: e.key, version: e.version, size: 100000000, exists: false });
290+
targetsMap.set(compositeKey, { key: e.key, version: e.version, size: 10000000, exists: false });
291291
}
292292
}
293293

0 commit comments

Comments
 (0)