Frontmatter
| id | 1474 |
| title | separate the webpack based split chunks into 1 folder for each thread |
| state | Closed |
| labels | enhancement |
| assignees | tobiu |
| createdAt | Dec 3, 2020, 10:47 PM |
| updatedAt | Dec 3, 2020, 10:50 PM |
| githubUrl | https://github.com/neomjs/neo/issues/1474 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 3, 2020, 10:50 PM |
in some rare edge cases, webpack can create the same chunk file names for modules inside the main & app thread.
e.g.:
294 will override the other version, resulting in a corrupted output for the prod env.
i will add folders like
chunks/app/* chunks/main/*
to resolve this.