LearnNewsExamplesServices
Frontmatter
id7807
titledata.Store: load() => ignore the node.js env for webpack
stateClosed
labels
bug
assigneestobiu
createdAtNov 19, 2025, 2:00 PM
updatedAtNov 19, 2025, 2:01 PM
githubUrlhttps://github.com/neomjs/neo/issues/7807
authortobiu
commentsCount0
parentIssuenull
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtNov 19, 2025, 2:01 PM

data.Store: load() => ignore the node.js env for webpack

Closed v11.6.0 bug
tobiu
tobiu commented on Nov 19, 2025, 2:00 PM
const { readFile } = await import('fs/promises');

is outside the client-side scope, so webpack must ignore it for dist versions.

const { readFile } = await import(/* webpackIgnore: true */ 'fs/promises');
tobiu assigned to @tobiu on Nov 19, 2025, 2:00 PM
tobiu added the bug label on Nov 19, 2025, 2:00 PM
tobiu referenced in commit 85c82d5 - "data.Store: load() => ignore the node.js env for webpack #7807" on Nov 19, 2025, 2:01 PM
tobiu closed this issue on Nov 19, 2025, 2:01 PM