mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 03:48:39 +00:00
fix : broken magic number
This commit is contained in:
@@ -58,7 +58,7 @@ const HOST = process.env.HOST || 'localhost';
|
||||
const PORT = process.env.PORT || 3000;
|
||||
|
||||
const _tokens = new LRUCache<string, string>({
|
||||
max: 10240,
|
||||
max: 1024 * 10,
|
||||
ttl: 1000 * 60 * 5,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user