Using sveltekit with svelte 4,There's data required to server side render pages that is loaded in the root +layout.server.js
. The data is then used both on the client and server side, however, I need a way to edit the data after the page is loaded and the $page
store is readonly. If I import a store and .set() it inside the root +layout.svelte
, then all users/requests will trigger updates to the store on the server side, which is bad.
So how do I go about creating a store, or simple object, that is instantiated in the root server layout, which can be edited on the client side later?
I tried to use depends('data:rates')
but that makes all the nested routes rerun their load functions and it still doesn't let me have fine-grained control on the data and timing from the client.
Note that a store limited to one file would work, but this store/object needs to be imported by dozens of locations across the site.
Thanks.