notramo

Results 200 comments of notramo

@cjpatoilo Where is the backend “open source” code? This repo does not contain it. See #48

@ammen99 is there any progress on this?

Could you explain how? As I previously mentioned, the static adapter does not support server-side hooks.

Sorry for the confusion, I haven't notice there are separate pages for pure Svelte and SvelteKit. However, SvelteKit does not use `window.fetch` but `event.fetch`, so it's not compatible with the...

I always use private mode, because of performance, but I want to use search suggestions in private mode too. What about having three setting option: - always in ( e.g....

Why bundle dev dependencies? Put the prod dependencies in to `dependencies` and only use dev for tooling like Biome, Lefthook, svelte-check, and TypeScript. However, this only seem to be a...

Just reminding everyone here that origin checking is an insufficient CSRF protection measure. It's harmful by creating a false sense of security. Origin can be spoofed, so checking it only...

The upcoming [Svelte 5 snippets](https://svelte-5-preview.vercel.app/docs/snippets) are more flexible than Vue (and Svelte 4) slots, and the `capture` example posted by @ellmetha seems very similar to it. I think snippets are...

@ellmetha The `with param="value"` for the `include` tag is hard to find in the documentation. It should be mentioned in [template introduction](https://martenframework.com/docs/templates/introduction), and maybe demonstrated in the [tutorial](https://martenframework.com/docs/getting-started/tutorial). Using `include`...

Snippets could replace layouts (`extend` and `block`) too, effectively turning layouts into components. Here are some examples of how the concept of [Svelte 5 snippets](https://svelte-5-preview.vercel.app/docs/snippets) would translate to Marten templates....