kit
kit copied to clipboard
web development, streamlined
### Describe the bug Safari throws an Exception in [this line](https://github.com/sveltejs/kit/blob/d3d44ff72cf26f773f82be7c1f692a5ed92a590e/packages/kit/src/runtime/client/client.js#L539) for me. ``` Reference Error: Cannot access uninitialized variable ``` svelte-kit version 1.0.0-next.561 renders the +error.svelte normally ### Reproduction...
### Describe the problem I'm working on a shared component library to use with a number of different projects. The release process of this library needs to be different than...
### Describe the problem `tsc` has a `declarationMap` compiler option, which is useful for libraries that distribute their source code along with the compiled `.js`/`.d.ts` files as it allows IDEs...
### Describe the problem As with #7798, `getStaticDirectory()` is unused by official adapters. Static assets are included in `getClientDirectory()`, and the adapter has a list of files in `static`, so...
### Describe the bug If I have cache headers set in my server load function ```ts export async function load(params) { console.log('LOADING'); // const val = params.url.searchParams.get('val'); const val =...
### Describe the problem `builder.generateManifest(...)` takes a `format` option which can be either `esm` or `cjs`. The `cjs` option is there because certain adapters needed it at one point. That's...
### Describe the bug When creating a +page.ts file, if one initially sets it to .js, you can't just rename the file to .ts to get it to start working....
### Describe the bug When using SvelteKit's clientside link navigation, redirects are not being respected unless the link has the `data-sveltekit-reload` attribute. If a page returns a redirect, Kit just...
### Describe the bug when running `svelte-package`, it does not include source maps even when they are enabled in `svelte.config.js` ### Reproduction ```js // svelte.config.js import preprocess from 'svelte-preprocess'; const...
### Describe the problem Right now `sveltekit package` only preprocesses TS/Svelte files to JS/"vanilla Svelte" files and exports these in their raw form. This is good when you want to...