You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bundling this library with webpack raises the following error:
Error: Cannot find module './blob'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:582:15)
at Function.Module._load (internal/modules/cjs/loader.js:508:25)
at Module.require (internal/modules/cjs/loader.js:637:17)
at require (internal/modules/cjs/helpers.js:22:18)
at Object.get [as Blob] (/node_modules/fast-azure-storage/lib/index.js:17:1)
at cache (/src/lib/blob-cache.js:8:1)
at Object.<anonymous> (/src/lib/query-maxmind.js:24:1)
at __webpack_require__ (/webpack:bootstrap:19:1)
at Object.<anonymous> (/src/index.js:4:1)
at __webpack_require__ (/webpack:bootstrap:19:1)
The problem lies in the way index lazily exports the modules. I am wondering, is there any reason for this or we could export the modules in the good ol' modules.exports = {...} way?
The text was updated successfully, but these errors were encountered:
Bundling this library with webpack raises the following error:
The problem lies in the way index lazily exports the modules. I am wondering, is there any reason for this or we could export the modules in the good ol'
modules.exports = {...}
way?The text was updated successfully, but these errors were encountered: