Skip to content

Commit fceb40c

Browse files
authored
fix: (@vue/apollo-option) memory leak in wrapped ssrRender (#1553)
1 parent f0ab708 commit fceb40c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/vue-apollo-option/src/mixin.js

+3
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,14 @@ export function installMixin (app, provider) {
115115
if (isServer) {
116116
// Patch render function to cleanup apollo
117117
const render = this.$options.ssrRender
118+
if (!render) return
119+
if (render.__IS_VUE_APOLLO_WRAPPED) return
118120
this.$options.ssrRender = (h) => {
119121
const result = render.call(this, h)
120122
destroy.call(this)
121123
return result
122124
}
125+
this.$options.ssrRender.__IS_VUE_APOLLO_WRAPPED = true
123126
}
124127
},
125128

0 commit comments

Comments
 (0)