Jordan Coeyman
Jordan Coeyman
as suggested, `npm i --legacy-peer-deps` resolves, but how can we solve the reccomended install option?
It'd be a great feature if we could customize SMTP port. For Google Cloud Platform, we're allowed to use ports 587 or 465. - https://cloud.google.com/compute/docs/tutorials/sending-mail
Would love to see this merged..
@s3812497 i haven't used the new `cookies.delete` function, but i am able to use `cookies.set` to remove a cookie: ```js cookies.set("cookieName", "", { httpOnly: true, path: '/', maxAge: 0 })...
Came here to +1 this, but then realized.. There is nothing special needed, it works out of the box like this (pseudocode): ``` import Sortable from 'sortablejs'; import { onMount...
I can second this "issue". Working on a solution. Thank you for SortableJS, i enjoy using it Demo: https://svelte.dev/repl/9fe76dda194348d1acd6d2e336c30c22?version=3.35.0 edit: "solved" in a way i'm ok with: https://svelte.dev/repl/3ca698f0c1064bd99667c9a7557c427d?version=3.35.0 Instead of...
After upgrading to latest SvelteKit that requires vite3, I'm getting this error on dev + build: ``` /[projectName]/node_modules/.pnpm/[email protected]/node_modules/algoliasearch/dist/algoliasearch.esm.browser.js:2221 export default algoliasearch; ^^^^^^ SyntaxError: Unexpected token 'export' .... ``` I'm importing...
Just ran into this, after 3+ years of running smooth.
This still seems to be an issue for me.. neither of the above techniques trigger a change when editing HTML: > https://svelte.dev/repl/209dd0724c1d440bb5d9950985627f8a?version=3.55.1
It seems that we're missing an `on:input` event on the `` element within `Editor.svelte`. Modifying [this line](https://github.com/nenadpnc/cl-editor/blob/50706f3fb0cc7ed25d9cd2bd2ed05619fd501842/src/Editor.svelte#L29) to: ```svelte _onChange(event.target.value)} class="cl-textarea" style="max-height: {height}; min-height: {height}" /> ``` And it behaves...