kit
kit copied to clipboard
web development, streamlined
### Describe the bug Given the following `app.d.ts`: ```ts declare namespace App { interface PageData { foo: number; } } ``` If you do the following in a `+page.ts` load...
### Describe the bug [Telefunc](https://telefunc.com/) allows simple frontend to backend calls, avoiding direct call to `fetch`. ```ts // The `CreateTodo.telefunc.js` file is not loaded: // Telefunc transforms `*.telefunc.js` imports into...
### Describe the bug When loading large amounts of data, it's possible for `$page.data` to get choked up with too many function arguments. If the page is navigated to via...
### Describe the problem Let think about default configs and options and some features for svelte-create. I think, now configuring svelte takes a little more steps than is necesary. (mainly...
### Describe the bug Running the Svelte Kit project on an iPhone running >iOS 15, we noticed this syntax error on Sentry when the project is visited from an in-app...
### Describe the bug Docker build with nodeAdapter '@sveltejs/adapter-node'; ` npm run build` `npm run build` works fine on the local machine without docker. ```js import adapter from '@sveltejs/adapter-auto'; import...
### Describe the bug If a link is clicked on multiple times in quick succession, the `load` function of the corresponding page will be executed again and again. This behavior...
### Describe the problem I am having a situation where I am calling an API in my load functions and storing an access token and a refresh token in http...
### Describe the problem The new sveltekit routing might make it confusing to know which +page.svelte you are editing ### Describe the proposed solution Mention something along these lines at...
### Describe the problem Currently if I do: ```svelte @import '$lib/scss'; ``` I get a `Can't find stylesheet to import.` error. While a normal path that doesn't use aliases works....