Frontmatter
| id | 4140 |
| title | Lazy loaded forms are acting differently in dist/production |
| state | Closed |
| labels | bughelp wantedstale |
| assignees | [] |
| createdAt | Feb 23, 2023, 4:56 PM |
| updatedAt | Sep 12, 2024, 4:29 AM |
| githubUrl | https://github.com/neomjs/neo/issues/4140 |
| author | tobiu |
| commentsCount | 2 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Sep 12, 2024, 4:29 AM |
Inside the dev mode: https://neomjs.github.io/pages/node_modules/neo.mjs/apps/form/
clicking the "validate all pages" button will fetch the missing modules in parallel:
inside the webpack based output, they do get fetched one by one: https://neomjs.github.io/pages/node_modules/neo.mjs/dist/production/apps/form/
not sure yet, if i am using
Promise.all()in a way which webpack does not understand or if this might be a bug. sadly i am super short on time with my neo client-project MVP getting close. so, any help is appreciated :)the related code is here: https://github.com/neomjs/neo/blob/dev/src/form/Container.mjs#L146
which triggers: https://github.com/neomjs/neo/blob/dev/src/layout/Card.mjs#L173
@sokra