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 c2f386f commit fa4b880Copy full SHA for fa4b880
lib/plugins/entry-files-manifest.js
@@ -19,6 +19,13 @@ function processOutput(assets) {
19
delete assets[entry];
20
}
21
22
+ // with --watch or dev-server, subsequent calls will include
23
+ // the original assets (so, assets.entrypoints) + the new
24
+ // assets (which will have their original structure). We
25
+ // delete the entrypoints key, and then process the new assets
26
+ // like normal below
27
+ delete assets.entrypoints;
28
+
29
// This will iterate over all the entry points and remove the / from the start of the paths. It also converts the
30
// one file entries into an array of one entry since that was how the entry point file was before this change.
31
for (const asset in assets) {
0 commit comments