kit
kit copied to clipboard
web development, streamlined
**Describe the bug** As far as I can tell there's no way to use sveltekit runtime imports (eg: `$app/navigation`) outside of sveltekit dev/build. Which makes testing virtually impossible. If there...
### Describe the bug When I call `vite dev`, I get a few warnings which state `Omitting environment variable "ProgramFiles(x86)" from $env/static/private as it is not a valid identifier` ....
### Describe the problem As you know, SvelteKit already categorises all generated files into three categories: `build`, `files` and `prerendered`. These are based on the origin of the files, which,...
### Describe the problem This is a Typescript problem (see [this](https://github.com/microsoft/TypeScript/issues/16577), and [this](https://github.com/microsoft/TypeScript/issues/40878)), but package is affected by this because it produces ESM javascript. Say your `src/lib` folder has two...
### Describe the problem I want to set up logging in my sveltekit hook. One of the things I want to log is the number of bytes in the response...
### Describe the bug I'm using cloudflare-adapter to deploy to Cloudflare Pages. My `_worker.js` is growing to ridiculous sizes, perhaps most relevantly, it's larger than my app with all its...
### Describe the problem I have a project with a following pages routes structure: ``` /routes/index.svelte /routes/posts/index.svelte /routes/posts/index.json.js /routes/posts/category1/index.svelte /routes/posts/category2/index.svelte /routes/posts/[...catchall]/index.json.js /routes/posts/[...catchall]/index.svelte ``` What I am doing there: * `/routes/posts/index.{svelte,json.js}`...
### Describe the bug After following the instruction ``` `svelte-kit sync` now runs on "postinstall" — please remove the "prepare" script from your package.json ``` Sometimes `pnpm run check` fails...
### Describe the bug `adapter-static` fails when I run `npm run build` and I have set `paths.base` to some path (as intended to eventually deploy on GitHub pages). The build...
### Describe the problem Currently in Svelte Kit the recommended way to import global styles or scripts is in your root layout, this is a problem for the following reasons:...