-
i try to build a simple website. (not a complex app using Webpack) How to extend this with DexieCloud
but i run into trouble ... |
Beta Was this translation helpful? Give feedback.
Answered by
pwsimon
Nov 20, 2023
Replies: 2 comments 1 reply
-
i found!
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
pwsimon
-
Here's an update answer to this question: HTML<script src="https://unpkg.com/dexie"></script>
<script src="https://unpkg.com/rxjs@7/dist/bundles/rxjs.umd.js"></script>
<script src="https://unpkg.com/dexie-cloud-addon/dist/umd/dexie-cloud-addon.js"></script> JSconst db = new Dexie('MySyncedDB', { addons: [DexieCloud.dexieCloud] }); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i found!