Dev-Guy
Dev-Guy
It's unclear to me how to deploy this to firebase without a production build.
@zachdaniel I can work on a PR but need some more advice from you
The following branch works but you need to run the following first: `PORT=4444 npx y-webrtc server.js` https://github.com/good-ware/svelte-kanban/tree/synced-store **Demo** One window is Chrome and the other is Safari. https://github.com/V-Py/svelte-kanban/assets/12297328/e4c8b0ee-6128-4c9c-b3f6-6f439610da1a It's a...
Close up of a move column bug. It only happens when moving a column to the left. Notice when you move a column to the left, an extra card shows...
The move column bug is fixed. The fix involved using different orders depending on which direction the column is moved. - When moving right, remove the old column and insert...
The latest SvelteKit doesn't require changing vite or ts config files. Instead, aliases are added to the svelte config file.
I like this. Eliminating the Svelte warnings is a big win IMO since the fewer warnings my team has to ignore, the less likely they are to miss the important...
[vonagam](https://github.com/vonagam) Why doesn't live_svelte do `import {getContext} from "svelte"` ? Looks like you're avoiding adding a direct dependency between live_svelte and svelte. I'm curious why. Does that throw a runtime...
I'd rather not have to do this, but this is the only thing that works when my project gets into this state: ```sh rm -rf _build mix setup mix phx.server...
I deleted `assets/svelte/_build` and that was the beginning of my trouble. Here's what doesn't work after that (followed by `mix setup; mix phx.server`): - `mkdir assets/svelte/_build` And/or: - `touch lib/my_app/live/svelte/*.ex`...