You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: documentation/docs/30-advanced/20-hooks.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -72,14 +72,16 @@ You can add call multiple `handle` functions with [the `sequence` helper functio
72
72
73
73
-`transformPageChunk(opts: { html: string, done: boolean }): MaybePromise<string | undefined>` — applies custom transforms to HTML. If `done` is true, it's the final chunk. Chunks are not guaranteed to be well-formed HTML (they could include an element's opening tag but not its closing tag, for example) but they will always be split at sensible boundaries such as `%sveltekit.head%` or layout/page components.
74
74
-`filterSerializedResponseHeaders(name: string, value: string): boolean` — determines which headers should be included in serialized responses when a `load` function loads a resource with `fetch`. By default, none will be included.
75
+
-`preload(input: { type: 'js' | 'css' | 'font' | 'asset', path: string }): boolean` — determines what should be added to the `<head>` tag to preload it. Preloading can improve performance because things are downloaded sooner, but they can also hurt core web vitals because too many things may be downloaded unnecessarily. By default, `js`, `css` and `font` files will be preloaded. `asset` files are not preloaded at all currently, but we may add this later after evaluating feedback.
75
76
76
77
```js
77
78
/// file: src/hooks.server.js
78
79
/**@type{import('@sveltejs/kit').Handle}*/
79
80
exportasyncfunctionhandle({ event, resolve }) {
80
81
constresponse=awaitresolve(event, {
81
82
transformPageChunk: ({ html }) =>html.replace('old', 'new'),
Copy file name to clipboardexpand all lines: packages/kit/types/index.d.ts
+24
Original file line number
Diff line number
Diff line change
@@ -238,6 +238,12 @@ export interface KitConfig {
238
238
};
239
239
}
240
240
241
+
/**
242
+
* This function runs every time the SvelteKit server receives a [request](https://kit.svelte.dev/docs/web-standards#fetch-apis-request) and
243
+
* determines the [response](https://kit.svelte.dev/docs/web-standards#fetch-apis-response).
244
+
* It receives an `event` object representing the request and a function called `resolve`, which renders the route and generates a `Response`.
245
+
* This allows you to modify response headers or bodies, or bypass SvelteKit entirely (for implementing routes programmatically, for example).
0 commit comments