Skip to content

Commit ae6dcd6

Browse files
committed
fix(ssr): remove trailing hash in webpack module identifier when
generating client manifest
1 parent 805a4fd commit ae6dcd6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/server/webpack-plugin/client.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export default class VueSSRClientPlugin {
4343
if (!chunk || !chunk.files) {
4444
return
4545
}
46-
const files = manifest.modules[hash(m.identifier)] = chunk.files.map(fileToIndex)
46+
const id = m.identifier.replace(/\s\w+$/, '') // remove appended hash
47+
const files = manifest.modules[hash(id)] = chunk.files.map(fileToIndex)
4748
// find all asset modules associated with the same chunk
4849
assetModules.forEach(m => {
4950
if (m.chunks.some(id => id === cid)) {

0 commit comments

Comments
 (0)