DEV Community

Discussion on: Simple Page Transitions with SvelteKit

Collapse
 
felixbaumgaertner profile image
felixbaumgaertner

Thanks for this nice tutorial!
It seems like the variable names have changed, so that "export const load = async ({ page })" has to be changed to "export const load = async ({ url })". Don't forget the props: "key: page.path" to "key: url"

Collapse
 
evanwinter profile image
Evan Winter

Ah, thanks, I hadn't seen that! I'll update this post to reflect those changes