How to use AceBase with SvelteKit #238
EulerTourist
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thought this might save someone some grief. Here's how I got a tidy implementation sharing
AceBase.WithIndexedDB
with multiple Svelte pages, noting thatWithIndexedDB
wants to run in browser only. You can do a similar thing withproxy.value
if you want to push data upstream as well, however, you won't needsvelte/store
in that case, since it's already reactive.+layout.js
+layout.svelte
+page.svelte ( in any route )
Beta Was this translation helpful? Give feedback.
All reactions