Skip to content

Commit fd828d7

Browse files
Update packages/kit/src/runtime/server/respond.js
Co-authored-by: Ben McCann <[email protected]>
1 parent 8a701d7 commit fd828d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/kit/src/runtime/server/respond.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,8 +574,8 @@ export async function respond(request, options, manifest, state) {
574574
// via our own `fetch`, render a 404 page
575575
if (state.depth === 0) {
576576
// In local development, Chrome requests this file for its 'automatic workspace folders' feature,
577-
// causing console spam. TODO should we instead respond with some actual data?
578-
// https://chromium.googlesource.com/devtools/devtools-frontend/+/main/docs/ecosystem/automatic_workspace_folders.md
577+
// causing console spam. If users want to serve this file they can install
578+
// https://github.com/ChromeDevTools/vite-plugin-devtools-json
579579
if (DEV && event.url.pathname === '/.well-known/appspecific/com.chrome.devtools.json') {
580580
return new Response(undefined, { status: 404 });
581581
}

0 commit comments

Comments
 (0)