-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
SvelteKitError: Not found: /.well-known/appspecific/com.chrome.devtools.json #13743
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Sounds like Chrome dev tools making these requests - https://goo.gle/devtools-json-design - which would mean there's nothing for us to fix. |
Related: To suppress with hooks:
Or create the file according to I had to create it in |
In addition to the suggestions provided above by @benquan I noticed at the bottom of the page he linked it mentions a vite plugin that also does the trick. This feature allows you to use workspaces in Chrome DevTools so you can save changes to local files from the DevTools window. I'm uninstalling my current IDE, and DevTools will be my new main, who's with me ;) |
As mentioned in the Reddit link shared by @benquan:
I was able to resolve the issue by navigating to ![]() |
@srt1104 Thank you, Btw is it going to be a problem in future ? |
I'm still getting this error with sveltekit 2.21.0 and vite 6.3.5, should i wait for the next sveltekit version? |
Also still getting it with vite 6.3.5
…On Wed, May 14, 2025 at 9:05 PM anxpara ***@***.***> wrote:
*anxpara* left a comment (sveltejs/kit#13743)
<#13743 (comment)>
I'm still getting this error with sveltekit 2.21.0 and vite 6.3.5, should
i wait for the next sveltekit version?
I'm gonna disable the setting in chrome for now.
—
Reply to this email directly, view it on GitHub
<#13743 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACH3QI2CLUXF4AA3LZGMOP326OHZJAVCNFSM6AAAAAB35NDNK2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDQOBRGI2TEMJRGU>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Thanks for the flag disable solution: @srt1104 One caveat: I had to restart chrome after disabling flags for it to work |
Given how prevalent this is (I encounter it constantly) and how annoying it is, I think it would be reasonable to do something about it, even if that's just suppressing errors in dev to prevent console spam |
I'm using the Brave browser, and the terminal keeps prompting this error, and it's hard to see the other error messages that I need. |
First npm install -D vite-plugin-devtools-json Then in the vite configuration, import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import devtoolsJson from "vite-plugin-devtools-json";
export default defineConfig({
plugins: [sveltekit(),devtoolsJson()],
}); |
Describe the bug
I'm suddently getting this in my terminal during dev mode. No idea what's caused it or whether it's actually impacting anything. I am reading a value from localStorage in my root +layout.json file, but that's the only interaction with localstorage in the app, other than setting that value on user sign in.
Best of luck...
SvelteKitError: Not found: /.well-known/appspecific/com.chrome.devtools.json
at resolve (C:\devprojects\learning\pwa-ktt\node_modules@sveltejs\kit\src\runtime\server\respond.js:582:13)
at C:\devprojects\learning\pwa-ktt\node_modules@sveltejs\kit\src\runtime\server\respond.js:370:7
at AsyncLocalStorage.run (node:internal/async_local_storage/async_hooks:91:14)
at with_event (C:\devprojects\learning\pwa-ktt\node_modules@sveltejs\kit\src\runtime\app\server\event.js:49:20)
at resolve (C:\devprojects\learning\pwa-ktt\node_modules@sveltejs\kit\src\runtime\server\respond.js:369:6)
at init_promise.#options.hooks.handle (C:\devprojects\learning\pwa-ktt\node_modules@sveltejs\kit\src\runtime\server\index.js:76:56)
at C:\devprojects\learning\pwa-ktt\node_modules@sveltejs\kit\src\runtime\server\respond.js:364:18
at AsyncLocalStorage.run (node:internal/async_local_storage/async_hooks:91:14)
at with_event (C:\devprojects\learning\pwa-ktt\node_modules@sveltejs\kit\src\runtime\app\server\event.js:49:20)
at respond (C:\devprojects\learning\pwa-ktt\node_modules@sveltejs\kit\src\runtime\server\respond.js:363:26) {
status: 404,
text: 'Not Found'
}
Reproduction
I wouldn't now how to provide a reproduction for this other than providing my actual repo, because I don't know what originally caused this issue.
Logs
System Info
Severity
annoyance
Additional Information
No response
The text was updated successfully, but these errors were encountered: