Skip to content

Commit 0e0b268

Browse files
author
Rich Harris
committed
fix
1 parent d39107b commit 0e0b268

File tree

1 file changed

+2
-2
lines changed
  • content/tutorial/04-advanced-sveltekit/01-hooks/01-handle

1 file changed

+2
-2
lines changed

content/tutorial/04-advanced-sveltekit/01-hooks/01-handle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export async function handle({ event, resolve }) {
2525
return await resolve(event, {
2626
+++ transformPageChunk: ({ html }) => html.replace(
2727
'<body',
28-
'<body style="color: purple"'
28+
'<body style="color: hotpink"'
2929
)+++
3030
});
3131
}
@@ -43,7 +43,7 @@ export async function handle({ event, resolve }) {
4343
return await resolve(event, {
4444
transformPageChunk: ({ html }) => html.replace(
4545
'<body',
46-
'<body style="color: purple"'
46+
'<body style="color: hotpink"'
4747
)
4848
});
4949
}

0 commit comments

Comments
 (0)