fix: Ignores hot update files when generating the manifest (#24871)
This commit is contained in:
parent
371bffbfea
commit
aee2695413
|
|
@ -98,11 +98,10 @@ const plugins = [
|
|||
.filter(x => x.endsWith('.css'))
|
||||
.map(x => `${output.publicPath}${x}`),
|
||||
js: chunks
|
||||
.filter(x => x.endsWith('.js'))
|
||||
.filter(x => x.endsWith('.js') && x.match(/(?<!hot-update).js$/))
|
||||
.map(x => `${output.publicPath}${x}`),
|
||||
};
|
||||
});
|
||||
|
||||
return {
|
||||
...seed,
|
||||
entrypoints: entryFiles,
|
||||
|
|
|
|||
Loading…
Reference in New Issue