diff --git a/app/lib/lru.ts b/app/lib/lru.ts
index 683d1e11..d5b35b8e 100644
--- a/app/lib/lru.ts
+++ b/app/lib/lru.ts
@@ -1,4 +1,4 @@
-import createLRU from 'lru-cache'
+import * as createLRU from 'lru-cache'
 import * as fs from 'fs'
 const lru = createLRU({ max: 256, maxAge: 250 })
 const origLstat = fs.realpathSync.bind(fs)