We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2fa0a6 commit 85c82d5Copy full SHA for 85c82d5
src/data/Store.mjs
@@ -545,7 +545,7 @@ class Store extends Base {
545
546
// Fallback for non-browser based envs like nodejs
547
if (globalThis.process?.release) {
548
- const { readFile } = await import('fs/promises');
+ const { readFile } = await import(/* webpackIgnore: true */ 'fs/promises');
549
const content = await readFile(opts.url, 'utf-8');
550
data = {json: JSON.parse(content)};
551
} else {
0 commit comments