[fix] call onDestroy in SSR (#6677)

Via #6416, lifecycle hooks became noops for SvelteKit. But onDestroy is said to be called suring SSR according to the docs.

Fixes #6676
pull/7738/head
Simon H 5 years ago committed by GitHub
parent d621ae9335
commit 0daccb2dae

@ -1,4 +1,5 @@
export {
onDestroy,
setContext,
getContext,
getAllContexts,
@ -10,6 +11,5 @@ export {
} from './index';
export function onMount() {}
export function onDestroy() {}
export function beforeUpdate() {}
export function afterUpdate() {}

Loading…
Cancel
Save