Skip to content

Commit cfb19fb

Browse files
committed
chore: address pr feedback
1 parent fd37ea6 commit cfb19fb

File tree

4 files changed

+5
-17
lines changed

4 files changed

+5
-17
lines changed

documentation/docs/14-configuration.md

-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ const config = {
2929
// ...
3030
}
3131
},
32-
link_header: false,
3332
endpointExtensions: ['.js', '.ts'],
3433
files: {
3534
assets: 'static',
@@ -139,12 +138,6 @@ When pages are prerendered, the CSP header is added via a `<meta http-equiv>` ta
139138

140139
> When `mode` is `'auto'`, SvelteKit will use nonces for dynamically rendered pages and hashes for prerendered pages. Using nonces with prerendered pages is insecure and therefore forbidden.
141140
142-
# link_header
143-
144-
When `true` the server will inject a `Link: </my-files.js>; rel=preload` header defined by [MDN Link](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Link). This can be used to let the browser know about modulepreloads before the html is parsed.
145-
146-
> Cloudflare with [Early Hits](https://developers.cloudflare.com/cache/about/early-hints) enabled can then further optimize this by fetching these assets as it flies through the edge.
147-
148141
### endpointExtensions
149142

150143
An array of file extensions that SvelteKit will treat as endpoints. Files with extensions that match neither `config.extensions` nor `config.kit.endpointExtensions` will be ignored by the router.

packages/kit/src/core/dev/plugin.js

-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ export async function create_plugin(config, cwd) {
286286
{
287287
amp: config.kit.amp,
288288
csp: config.kit.csp,
289-
link_header: false,
290289
dev: true,
291290
floc: config.kit.floc,
292291
get_stack: (error) => {

packages/kit/src/runtime/server/page/render.js

+5-8
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,9 @@ export async function render_response({
233233
// don't load stylesheets that are already inlined
234234
// include them in disabled state so that Vite can detect them and doesn't try to add them
235235
attributes.push('disabled', 'media="(max-width: 0)"');
236-
} else if (options.link_header) link_header_preload.add(path);
236+
} else {
237+
link_header_preload.add(`<${path}>; rel="preload"`);
238+
}
237239

238240
return `\n\t<link ${attributes.join(' ')}>`;
239241
})
@@ -243,7 +245,7 @@ export async function render_response({
243245
for (const dep of modulepreloads) {
244246
const path = options.prefix + dep;
245247
head += `\n\t<link rel="modulepreload" href="${path}">`;
246-
if (options.link_header) link_header_preload.add(path);
248+
link_header_preload.add(`<${path}>; rel="modulepreload"`);
247249
}
248250

249251
const attributes = ['type="module"', `data-hydrate="${target}"`];
@@ -310,12 +312,7 @@ export async function render_response({
310312
});
311313

312314
if (link_header_preload.size) {
313-
headers.set(
314-
'link',
315-
Array.from(link_header_preload)
316-
.map((href) => `<${href}>; rel=preload`)
317-
.join(',')
318-
);
315+
headers.set('link', Array.from(link_header_preload).join(','));
319316
}
320317

321318
if (cache) {

packages/kit/types/internal.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,6 @@ export type SSRNodeLoader = () => Promise<SSRNode>;
242242
export interface SSROptions {
243243
amp: boolean;
244244
csp: ValidatedConfig['kit']['csp'];
245-
link_header: boolean;
246245
dev: boolean;
247246
floc: boolean;
248247
get_stack: (error: Error) => string | undefined;

0 commit comments

Comments
 (0)