Skip to content

Commit 8808a7b

Browse files
authored
docs: fix spacing (#612)
1 parent 98e03c5 commit 8808a7b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

documentation/docs/30-add-ons/03-devtools-json.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ You can also prevent the web server from issuing a notice regarding the incoming
1616
import { dev } from '$app/environment';
1717

1818
export function handle({ event, resolve }) {
19-
if (dev && event.url.pathname === '/.well-known/appspecific/com.chrome.devtools.json') {
20-
return new Response(undefined, { status: 404 });
21-
}
22-
23-
return resolve(event);
19+
if (dev && event.url.pathname === '/.well-known/appspecific/com.chrome.devtools.json') {
20+
return new Response(undefined, { status: 404 });
21+
}
22+
23+
return resolve(event);
2424
}
25+
```
2526

2627
## Usage
2728

0 commit comments

Comments
 (0)