Skip to content

Commit d0ad3de

Browse files
Sync kit docs (#1577)
sync kit docs Co-authored-by: svelte-docs-bot[bot] <196124396+svelte-docs-bot[bot]@users.noreply.github.com>
1 parent 9c7488b commit d0ad3de

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

apps/svelte.dev/content/docs/kit/10-getting-started/25-project-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ You can turn a [SvelteKit SPA](single-page-apps) into a desktop app with [Tauri]
6363

6464
## Browser extension
6565

66-
You can build browser extensions using either [`adapter-static`](adapter-static) or [community adapters](https://sveltesociety.dev/packages?category=sveltekit-adapters) specifically tailored towards browser extensions.
66+
You can build browser extensions using either [`adapter-static`](adapter-static) or [community adapters](/packages#sveltekit-adapters) specifically tailored towards browser extensions.
6767

6868
## Embedded device
6969

apps/svelte.dev/content/docs/kit/20-core-concepts/60-remote-functions.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -976,8 +976,6 @@ export const getStuff = query('unchecked', async ({ id }: { id: string }) => {
976976
});
977977
```
978978
979-
> [!NOTE] `form` does not accept a schema since you are always passed a `FormData` object. You are free to parse and validate this as you see fit.
980-
981979
## Using `getRequestEvent`
982980
983981
Inside `query`, `form` and `command` you can use [`getRequestEvent`]($app-server#getRequestEvent) to get the current [`RequestEvent`](@sveltejs-kit#RequestEvent) object. This makes it easy to build abstractions for interacting with cookies, for example:

apps/svelte.dev/content/docs/kit/60-appendix/20-integrations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default config;
2121

2222
You will also need to use a preprocessor if you're using TypeScript with Svelte 4. TypeScript is supported natively in Svelte 5 if you're using only the type syntax. To use more complex TypeScript syntax in Svelte 5, you will need still need a preprocessor and can use `vitePreprocess({ script: true })`.
2323

24-
## Adders
24+
## Add-ons
2525

2626
Run [`npx sv add`](/docs/cli/sv-add) to setup many different complex integrations with a single command including:
2727
- prettier (formatting)
@@ -35,9 +35,9 @@ Run [`npx sv add`](/docs/cli/sv-add) to setup many different complex integration
3535
- mdsvex (markdown)
3636
- storybook (frontend workshop)
3737

38-
## Directory
38+
## Packages
3939

40-
See [sveltesociety.dev](https://sveltesociety.dev/) for a full listing of [packages](https://sveltesociety.dev/packages) and [templates](https://sveltesociety.dev/templates) available for use with Svelte and SvelteKit.
40+
Check out [the packages page](/packages) for a curated set of high quality Svelte packages. You can also see [sveltesociety.dev](https://sveltesociety.dev/) for additional libraries, templates, and resources.
4141

4242
## Additional integrations
4343

0 commit comments

Comments
 (0)