-
Notifications
You must be signed in to change notification settings - Fork 108
[Question] DevTools integration lost in v0.10? Database and Blob panels not working with SQLite (D1) #772
Description
Description
After migrating from Nuxt Hub v0.9 to v0.10, I'm unable to use the DevTools integration that was previously available. I wanted to confirm whether this is intentional or if I'm missing something in my configuration.
What's not working
1. Database Panel
The "Hub Database" panel appears in DevTools, but when I try to launch, I get this error:
Failed to launch Drizzle Studio: Cannot use 'in' operator to search for 'driver' in undefined
2. Blob Panel
The Blob storage panel doesn't appear in DevTools at all. In v0.9, I could preview and manage uploaded files locally. Is this related to the deprecation of Hub Admin?
Questions
-
Has SQLite (D1) preview been dropped in v0.10?
The documentation briefly mentions "At the moment, Drizzle Studio does not support SQLite." If so, what's the recommended way to preview local D1 data during development?
If true, this seems like a significant impact since NuxtHub was originally built for Cloudflare. I was a bit surprised this wasn't documented in the migration guide, as it's a notable change for local development workflow. -
Is there an alternative way to inspect database and blob storage during development?
-
Is the missing Blob panel a known issue or expected behavior?
Environment
@nuxthub/core: v0.10.4
nuxt.config.ts:
hub: {
db: 'sqlite',
blob: true,
}