Frontmatter
| id | 7807 |
| title | data.Store: load() => ignore the node.js env for webpack |
| state | Closed |
| labels | bug |
| assignees | tobiu |
| createdAt | Nov 19, 2025, 2:00 PM |
| updatedAt | Nov 19, 2025, 2:01 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7807 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Nov 19, 2025, 2:01 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');