kit
kit copied to clipboard
web development, streamlined
This commit updates the instructions given by the CLI tool that scaffolds the sveltKit project. it wraps the project name in double quotes. This prevents errors when navigating into directories...
### Describe the bug when someone is a creating a new project by using the CLI tool, i.e. `create-svelte` package, they run `npm create svelte@latest my-app` and then the CLI...
### Describe the problem Currently, any `` tags that are initialized with the component will have their images loaded before the component's own JavaScript. This means that the page is...
### Describe the bug This code works as expected and displays "goodbye" to the page along with "running" in the console: ``` import { browser } from '$app/environment'; let text...
Use Svelte v5 as default in `create-svelte` package. Would `create-svelte` be deprecated and replaced with `sv`? > No, the new CLI replaces "npm create svelte" and "npx svelte-add". You will...
New package available at https://www.npmjs.com/package/sv
### Describe the problem We're running a webapp that shows different content based on the browser/request domain. How can we use prerendering in this case? I don't see an option...
### Describe the problem Whether to support memory-router. Since routing uses location.href to jump, it cannot be used in WebComponent micro-frontend applications ### Describe the proposed solution https://github.com/sveltejs/kit/discussions/4151 ### Alternatives...
### Describe the problem Today when I tried migrate, I had: ```ts type TileStatus = "Success" | "Error" | "Warning" | "Info" | "Loading"; // svelte 4 let status: TileStatus...
closes #12787 Adds a check to see if the data being returned is a `Response` object (such as with the helper method `json()`), then replies with a more helpful error...