Stephen Randall
Stephen Randall
Came to report a similar issue and found this one already open. A simpler example of the problem, if it helps: ``` simplify("(-0.5) x + y") x * -1 /...
@amrbashir @keiya01 @wusyong Apologies for the pings -- are there any updates on the review of this PR?
Is this still an active priority? I'm also using markdown syntax highlighting for `.svx` files but it definitely still misses a lot and the lack of auto-complete/Svelte intellisense is pretty...
> Do you have another idea of how to avoid #5725 without adding in a hard coded reference to `tauri:`? I don't entirely know the intent behind the check so...
Related (really, the same) issue: https://github.com/sveltejs/kit/issues/6166
Could you just spread the objects instead? ``` const out = { ..._Interval, ...constants, ...round, ... }; ```
Try this instead: ```svelte import Select from 'svelte-select'; const complexItems = [ {value: 'chocolate', label: 'Chocolate', group: 'Sweet'}, {value: 'pizza', label: 'Pizza', group: 'Savory'}, {value: 'cake', label: 'Cake', group: 'Sweet',...
The SvelteKit website does not come remotely close to violating GDPR, which applies to user data being "processed" (stored, sent, erased). Nothing is being processed here.
As a non-animation use case, MathJax rendering will cause the contents of the page to move around and hash navigation to look like it missed after MathJax is done. I've...
Does this issue persist if you use `base` from `$app/paths` instead of a `` element? I was able to turn on prefetching successfully with a GitLab Pages deployment that way.