We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 805a4fd commit ae6dcd6Copy full SHA for ae6dcd6
src/server/webpack-plugin/client.js
@@ -43,7 +43,8 @@ export default class VueSSRClientPlugin {
43
if (!chunk || !chunk.files) {
44
return
45
}
46
- const files = manifest.modules[hash(m.identifier)] = chunk.files.map(fileToIndex)
+ const id = m.identifier.replace(/\s\w+$/, '') // remove appended hash
47
+ const files = manifest.modules[hash(id)] = chunk.files.map(fileToIndex)
48
// find all asset modules associated with the same chunk
49
assetModules.forEach(m => {
50
if (m.chunks.some(id => id === cid)) {
0 commit comments